Is it possible to tint the drawableLeft in an android button? I have a black drawable I\'d like to tint white. I know how to achieve this with an image view (image on the le
You can either use drawable filter or if your API>=M then you can simply
textView.compoundDrawableTintList = ColorStateList.valueOf(Color.WHITE)
or in XML,
android:drawableTint="@color/white"