i am new to android programming. I want to use TAB(in keyboard) to change focus to the next edittext box. Please tell me how to do it.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use the Xml attribute If you want to use this programmatically (without using Xml attribute)
In onCreate() call setUpView() before setDownFocus() |
||||
|
You can use this XML on your layout
|
|||
|
|
|
I think that you want to intercept the TAB key press and jump to the next element on screen. What I did was to extend EditText and override the "onKeyDown" method so it would send the focus to the next element. Here is my simple extension to EditText:
In the layout you just set
You can customize to use other focus direction order. |
|||
|
|