in the layout file in android , i want to add button contains transparent text that indicated to the user what this field means and when begin to entire text the transparent text disappear as photo in the link http://www.mediafire.com/view/t93aa1qs6zfqq3s/Capture.PNG
Add transparent text in Email field that show what this field mean in Android
223 Views Asked by Ayman Emad At
4
There are 4 best solutions below
1

To do this via XML then use this:--
<EditText
android:id="@+id/etEmail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:hint="Enter your email address"
android:inputType="text"
android:paddingLeft="8dp"
android:singleLine="true"
android:text="[email protected]"
android:textSize="@dimen/textSize_etLogin" />
if you want to do programmatically then:--
EditText etEmail = findViewById(R.id.etEmail);
etEmail.setHint("Enter your email address");
Just add in your EditText, That will give hint to user that what they should do with that
EditText
.Using XML
Using Java
Output