I have an EditText
. My imeOptions
attribute for the EditText
is actionGo
. What do I have to do to make it display a '.com' key?
Asked
Active
Viewed 1,746 times
4
3 Answers
2
This is controlled by android:inputType i think.
Try textUri
.

mibollma
- 14,959
- 6
- 52
- 69
-
that didn't do it. That just gave me the standard keyboard – aamiri Aug 18 '11 at 02:04
1
Using the EditText attribute android:inputType="textWebEditText"
should give you the .com and applicable web buttons

Abandoned Cart
- 4,512
- 1
- 34
- 41
1
For this you have to provide your edittext with input type attribute to do this.
android:inputType="textEmailAddress"

Andro Selva
- 53,910
- 52
- 193
- 240