I use icon shade for my entire application.
An example in my ImageView :
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:src="@drawable/ic_account_circle" android:tint="@color/red_color"/>
I also use some of the icons in EditText as its drawable:
<EditText android:id="@+id/passwordInput" android:layout_width="match_parent" android:layout_height="wrap_content" android:drawableLeft="@drawable/ic_lock" android:drawablePadding="@dimen/medium_margin_padding" android:hint="@string/password_text" android:inputType="textPassword" />
However, I cannot find the code that can be used to tint a picture in EditText . Is it impossible to display stretchable?
Note:
I use the appcompat and design support library but cannot find the code.
source share