I'm looking to build a simple input form for username/password, and I was wondering if it was possible to mimic the functionality that many websites offer, namely a temporary string within a text input displaying what the field's purpose is. Essentially, I need something like this:

enter image description here

When the user hasn't yet focused in on the text input, it should display "USERNAME" in a different format. When the user has focused in on the text field, the field is cleared and focus is set and the style is changed. Is there a way to do this easily?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

look at the properties of the edittext - there is a "hint" property that does just that.

android:hint="Enter Username"

link|improve this answer
I thought there was something like this, couldn't find it in the docs for some reason. Fail. Thanks :) – TK Kocheran May 12 '11 at 1:23
1  
lol i almost simply answered "here's a big HINT" – jkhouw1 May 12 '11 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.