Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app where I am storing the usernames. Once the user clicks on his username, it goes to the login screen. Can it be done that the username be already inputted in the login screen. , so that the user only has to enter his password? Any help would be appreciated. Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

Use the setText() function.

share|improve this answer

you can use following code in xml:

android:text="<your text here>"

or

android:hint="<your text here>"

but there is more difference between those to android:text and android:hint, first one sets the text and second one will display untill any text entered.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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