My TextView has Drawable icon associated with it as below:
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvProfile"
android:drawableStart="@drawable/ic_menu_profile" />
while trying to tint/colour at runtime the textView's drawable compact, the below attempt returns null. But, the android:drawableLeft returns the drawable instance.
tvProfile.compoundDrawables[0]?.setColorFilter(color, PorterDuff.Mode.SRC_ATOP)
Was wondering any solution with android:drawableStart?