imageView.setColorFilter(Color.argb(255, 255, 255, 255));
I would like to change the alpha value to 10 percent (25) like this.
imageView.setColorFilter(Color.argb(25, 255, 255, 255));
But the color become black rather than transparent white. Any thoughts?