Search code examples
androidandroid-keypad

How to change the default keyboard next arrow into custom name in keyboard?


In my application login screen i need to change the default keyboard last next arrow instead of some text like next,done like this is it possible for android? if anyone know can you answer this question.


Solution

  • You can use android:imeActionLabel="YourText" or android:imeOptions="actionNext" property of EditText

    below is 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"
                     />