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.
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"
/>