Add a TextView below your EditText that contains the hint. By default set it to be invisible.
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="your hint..."
/>
Now add a onFocusChangeListener to make the TextView visible / invisible:
editText.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if(hasFocus)
tvHint.setVisibility(View.VISIBLE);
}else{
tvHint.setVisibility(View.INVISIBLE);
}
}
});