For your requirement, you do not need an onClick event listener.
try it
<EditText
android:hint="Enter you name"
android:id="@+id/editText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"></EditText>
or from java code
editText.setHint("Enter you name");
source
share