I have an EditText in Android configured for the number keyboard, and I would like the keyboard's button to say "next", while mine is saying "done". How can I change that? I already tried:
<com.innovattic.font.FontEditText
style="@style/CadastroTextBoxStyle"
android:hint="CEP"
android:id="@+id/etCEP"
android:inputType="number"
android:singleLine="true"
android.imeOptions="actionNext" />
And also this:
etCEP.setImeActionLabel("Next", KeyEvent.KEYCODE_ENTER);
But it still says done. What else can I do?
Thanks