I\'m actually trying to use colored icons in my app. I\'ve downloaded the official material design icon pack from here. Now all the icons in this pack are either white, grey
Many alternatives here already in this thread. Perhaps I can add one more for whoever finds it convenient :
You can also use the Drawable class, the code being as follows
Resources res = getResources();
Drawable drawable = res.getDrawable(R.drawable.ic_play_circle_filled);
drawable = DrawableCompat.wrap(drawable);
DrawableCompat.setTint(drawable, getResources().getColor(R.color.colorPrimary));
Although the above did the trick for me, but for my use case suggicient was to use android:tint