I want to show some help text(much like in a webpage when a field is focused a non-modal popup is shown about what to enter in the field).
I have used android:hint attribute of EditText but that clips the text if it is long. Is there any built in or quick way of doing this?
Add a TextView below your EditText that contains the hint. By default set it to be invisible.
Now add a onFocusChangeListener to make the TextView visible / invisible: