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

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -