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.

I am creating application with Webview. In that I loaded html pages in Webview. If the html pages having input with type email, then I want to enable email keyboard.Is it possible to show email friendly keyboard on android, similar to iphone?

share|improve this question
This could be using any browser for eg android, opera mobile, chrome or firefox. – user1271519 Apr 18 '12 at 9:18
Please accept answer if it is right... – V.J. Apr 18 '12 at 10:00
2  
Solution: HTML5 input tag has some limitations to enable the keyboard, refer the following link to check the supported keyboard types with input tag. quirksmode.org/html5/inputs_mobile.html – Ponmalar Aug 22 '12 at 11:29

closed as not a real question by casperOne Apr 18 '12 at 16:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You will only put

android:inputType="textEmailAddress" 

in your edittext box.

share|improve this answer
Thanks Vijay, the question is for a webpage. If your solution will work for web, can you please put some more details? I don't think we are using layout.xml at all for this? – user1271519 Apr 18 '12 at 10:32
As mentioned, this does not answer the question which is about web pages. – Lukos Nov 23 '12 at 11:34

yes it is posible

in your Edittext xml just add the attribute

android:inputType="textEmailAddress"

see this for more

EditText, inputType values (xml)

share|improve this answer
Where is edittext (xml) located? Like I sad we are not using any xml I guess. – user1271519 Apr 18 '12 at 11:36

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