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?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This is controlled by android:inputType i think. Try textUri.

link|improve this answer
that didn't do it. That just gave me the standard keyboard – aamiri Aug 18 '11 at 2:04
try some of the others – mibollma Aug 18 '11 at 3:08
feedback

For this you have to provide your edittext with input type attribute to do this.

android:inputType="textEmailAddress"
link|improve this answer
this gave me the @ key but not the .com key – aamiri Aug 18 '11 at 2:17
this might be because of the different os versions. – Andro Selva Aug 18 '11 at 4:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.