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

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-20 06:19:15  来源:igfitidea点击:

Email keyboard for edit text

androidandroid-edittext

提问by Sreekanth Karumanaghat

The following Code doesn't seem to work,I want the email keyboard with @and .comto 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);