I have tried many different ways to get NEXT button on the keyboard, but nothing worked.
Below are few Stackoverflow links i have followed.
- Setting EditText imeOptions to actionNext has no effect
- imeOptions "actionNext" programmatically - how to jump to next field?
I have seen few Android TV application, using below keyboard for inputs.
Any idea how can i get it?
EDIT:
Here is my XML
<EditText
android:id="@+id/etNric"
android:layout_width="@dimen/three_hundred"
android:layout_height="wrap_content"
android:hint="@string/hint_nirc"
android:singleLine="true"
android:imeOptions="actionNext"
android:maxLines="1"
android:minLines="1"
android:nextFocusDown="@id/etCaptcha" />