I am on Android 4+ and I am trying to add hints to my edit text widgets. I tried adding the hint to the layout as follows...
<EditText
android:id="@+id/bar_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:hint="@string/bar_name_hint"
/>
But when I focus on the Text box it writes over the hint instead of the hint disappearing.
I found documentation on adding a onFocus listener to the EditText, but I would like to avoid doing this programatically. The post below also mentioned using selectors but I can't find documentation on how to do that.
Android EditText Hint
So what is the best way to handle this?
I wrote this as recomended here by @A--C and @Flexo because they say "comments that say nothing beyond "me too" are just noise." and it's better to ask the same question again.
Comments like that are very useful as a way to contact the 1st person with the problem... maybe he has already fixed it and can post an answer that will be useful for everybody but didn't posted yet because he thought nobody would care.
I'm not going to post answers to questions only to get points so I can comment... I have more stuff to do... It should be available to everybody anyway.
I wouldn't be posting this if I hadn't tried EVERYTHING to fix my problem.