Android 用于编辑文本的电子邮件键盘
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/11204120/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Email keyboard for edit text
提问by Sreekanth Karumanaghat
The following Code doesn't seem to work,I want the email keyboard with @
and .com
to get displayed for the edit text.
以下代码似乎不起作用,我希望电子邮件键盘带有@
和.com
显示编辑文本。
emailEditText.setInputType(InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);
emailEditText.setInputType(InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);
回答by agamov
Add this to your layout:
将此添加到您的布局:
android:inputType="textEmailAddress"
android:inputType="textEmailAddress"
回答by Sreekanth Karumanaghat
Well I found the solution which is to use
好吧,我找到了要使用的解决方案
emailEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);
emailEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);