I\'m working on an android application, and I have a drawable that I\'m loading up from a source image. On this image, I\'d like to convert all of the white pixels to a dif
I also use ImageView for icons (in ListView or settings screen). But I think there is much simpler way to do that.
ImageView
ListView
Use tint to change the color overlay on your selected icon.
tint
In xml,
android:tint="@color/accent" android:src="@drawable/ic_event"
works fine since it comes from AppCompat
AppCompat