Issue
I have a drawable in my /res/drawable which looks like this:
How can I modify the drawable (code) so that I got a blue clock instead.
- only change the red pixels to blue
- background must be transparant (in icon.png the background is transparant too)
Solution
_myImgView.setColorFilter(Color.argb(255, 0, 0, 255)); // blue
Answered By - devops
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.