I'm trying to change the alpha channel, at the output is the same for different values of alpha.
image = BitmapFactory.decodeResource(context.getResources(), R.drawable.my_image); shinyImage = new BitmapDrawable(context.getResources(),border); shinyImage.setAlpha(0); // Альфа! image = shinyImage.getBitmap();
Does anyone understand why?