Applying ColorFilter to ImageView with ShapedDrawable

Alright, I had a quick play with this and noticed your issue of the circles disappearing. Without you describing what exactly you tried, I assume you haven’t tried setting the color filter to the Drawable itself yet? (as opposed to the ImageView, which only seems to work with BitmapDrawables). The following statements work perfectly fine … Read more

Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable’s Hue

This is what I use for my game. This is the compilation of various part found on various articles on websites. Credits goes to the original author from the @see links. Note that a lot more can be done with color matrices. Including inverting, etc… public class ColorFilterGenerator { /** * Creates a HUE ajustment … Read more