Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
android:inputType=“textEmailAddress” - '@' key and a '.com' key?

In my project I have an EditText in which user should enter his E-mail. How can I add ".com" button to Android Keyboard?

This is my code:

<EditText 
android:id="@+id/etEmail"
android:inputType="text|textEmailAddress"
android:singleLine="true"
android:layout_span="4"
android:textSize="15sp"
android:imeOptions="actionNext"
/>

==========> Update:

I had this problem in my Emulator (and still have actually). but when i checked on real device, Samsung Galaxy S2, I saw ".com" button. Therefore, on real device there is no problem. But my suggestion for emulator users is go to Settings/Language & Keyboard and then clear the tick of Chines Language and Japanese IME. So, you can see "@" in keyboard (but still there is no ".com" button in AVD 2.2).

share|improve this question
Given the number of different keyboards available for Android devices, the fact that they're their own packages I seriously doubt this is in the least bit feasible. – LaceySnr Dec 15 '11 at 2:11

marked as duplicate by therefromhere, casperOne Dec 16 '11 at 2:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

I suppose that android:inputType should be set to textEmailAddress only - specially if this is a field for email. But this option will not work for some devices - SE xperia, for example, does not provide any special keyboard for email input. For other devices it should work.

share|improve this answer

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