Change "Done" button in Android numeric keyboard -
Change "Done" button in Android numeric keyboard -
i have edittext in android configured number keyboard, , keyboard's button "next", while mine saying "done". how can alter that? 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 this:
etcep.setimeactionlabel("next", keyevent.keycode_enter);
but still says done. else can do?
thanks
as can seen in specifying input method type, not need phone call textview.setimeactionlabel(charsequence, int) , have instead provide android:imeoptions value such actionsend
or actionnext
in xml attributes alter label accordingly.
this not working because have mistyped :
.
in attributes. switching out should prepare issue in no time.
android android-edittext imeoptions
Comments
Post a Comment