I am having 4 EditText
s in my layout. I want to apply imeOptions
for the EditText
s as below,
- editTest1: ACTION_NEXT
- editTest2: ACTION_NEXT
- editTest3: ACTION_NONE with disabled mode
- editTest4: ACTION_DONE
So when user clicks the next from the 2nd EditText
, It should directly go to the 4th EditText
.
But when i try this, it is not working. Please guide me to achieve this.