nrofis
nrofis

Reputation: 9776

Android: Standard icons android.R.drawable with other color

Most of the standard icons of Android in android.R.drawable are gray in color.

I want to use them in other color, that match to my app colors. And I don't want to create copy of these icons and paint them in Photoshop or any painting application.

Is there any way to change their color in the code?

Upvotes: 4

Views: 693

Answers (1)

molnarm
molnarm

Reputation: 10031

Yes, it's possible with Drawable.setColorFilter, here's a related tutorial.

Upvotes: 3

Related Questions