Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android:imeOption & imeActionLable does not change keyboard Enter label with Next

Tags:

android

I have been trying to figure this out but no success. It seems very simple but I don't know why following two tag of xml (android:imeOptions="actionNext" android:imeActionLabel="Next") in the code does not work.

<EditText android:id="@+id/stcnTxt" style="@style/DetailFormTextField" android:singleLine="true" android:imeOptions="actionNext" android:imeActionLabel="Next"> </EditText>

According to upper code keyboard enter key Label should be replace with Next Label But it still show the enter key on the keyboard. I am using HTC wildfire for output.

like image 233
user1154390 Avatar asked Jan 17 '12 16:01

user1154390


1 Answers

I was having something similar problem, but android:inputType="text" solved my problem

like image 185
Shirish Herwade Avatar answered Sep 17 '22 22:09

Shirish Herwade