android - How to change the default keyboard next arrow into custom name in keyboard? -
in application login screen need change default keyboard last next arrow instead of text next,done possible android? if know can answer question.
you can use android:imeactionlabel="yourtext" or android:imeoptions="actionnext" property of edittext
below sample code
<edittext android:id="@+id/edit_user" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margintop="5dp" android:hint="@string/userprofile_email" android:inputtype="textemailaddress" android:imeactionlabel="@string/next" android:imeoptions="actionnext" />
Comments
Post a Comment