I am trying to create an EditText with a tooltip like icon and text together. But the tooltip text goes to the center, but I want the tooltip text to be left justified, so that there should be only a tab space (space) between the tooltip icon and the tooltip text.
Here is what I tried:
<EditText android:id="@+id/emailAddressInput" android:layout_width="match_parent" android:layout_height="40dp" android:ems="10" android:layout_marginTop ="20dp" android:layout_marginLeft ="20dp" android:layout_marginRight ="20dp" android:background="@drawable/rounded_edge" android:drawableLeft="@drawable/email_box" android:hint="e-mail address" android:gravity="left|center_vertical" android:maxLength="100" android:inputType="textEmailAddress" />
Any idea how I can achieve the desired result?
source share