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 got different issue in android application. I have taken 3 EditTexts in order. My intention is when I setOnClick on 1st editText the virtual keypad appearing. When i clicked on next on virtual key pad the courser is displaying in 2nd EditText. But i should not get the courser in 2nd editText it shoulod focus on 3rd EditText. How can I focus in 3rd edittext?

Please, help.

Thanks in advance.

share|improve this question

2 Answers

up vote 6 down vote accepted

You can specify

android:nextFocusDown

property in your layout.xml. For example (for edittext1):

android:nextFocusDown="@+id/edittext3"
share|improve this answer
thank u thank u so much.....Anton Derevyanko – prasad.gai Mar 29 '11 at 9:39
You are wellcome. Please, follow Vladimir Ivanov's advice and mark some of your answers as correct ;) – Anton Derevyanko Mar 29 '11 at 10:00

Call requestFocus() on your third editText.

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.