When I try to add a drawable to the left of the EditText with TextInputLayout, the edittext hint becomes the same as drawable.
How to avoid superimposed overlap. Without using TextInputLayout drawableLeft works fine
<android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/email" android:inputType="textEmailAddress" android:drawableLef="@drawable/email" /> </android.support.design.widget.TextInputLayout>
source share