I\'m working on an android application, and I have a drawable that I\'m loading up from a source image. On this image, I\'d like to convert all of the white pixels to a dif
If you have your drawable set to the ImageView you can do it with a 1 liner:
yourImageView.setColorFilter(context.getResources().getColor(R.color.YOUR_COLOR_HERE);