Created
March 13, 2017 09:27
-
-
Save JonathandelaSen/629c6274a1fa9d7ff6f0cad4e83a2e43 to your computer and use it in GitHub Desktop.
Android Colorize icons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void colorize(int color, ImageView... ivs) { | |
for (ImageView iv : ivs) { | |
iv.setColorFilter(color, PorterDuff.Mode.SRC_ATOP); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment