My layout has 4 EditText views and a submit Button view. I need to have "Next" button for first 3 EditText's and "Done" button for 4th EditText field in place of "New Line" key of soft keyboard.
Can anybody please help me in this
Thanks Nehatha
|
My layout has 4 EditText views and a submit Button view. I need to have "Next" button for first 3 EditText's and "Done" button for 4th EditText field in place of "New Line" key of soft keyboard. Can anybody please help me in this Thanks Nehatha |
|||
|
|
|
In your layout, just set the XML attributes See: this Also, there's an XML example halfway down this page, and more info in the "Controlling the action buttons" section: |
|||||||||||||||
|
|
to navigate the focus to the next edit field add
and for dismissing the softkey with done click add
on your layout :) |
|||
|
|
|
I think what you're looking for is something like this:
It first one will take the user to the next field in the layout that accepts text. The second will close the IME (the soft keyboard). |
||||
|
|