Email keyboard for edit text

試著忘記壹切 提交于 2019-12-06 16:36:33

问题


The following Code doesn't seem to work,I want the email keyboard with @ and .com to get displayed for the edit text.

emailEditText.setInputType(InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);


回答1:


Add this to your layout:

android:inputType="textEmailAddress"




回答2:


Well I found the solution which is to use

emailEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);



来源:https://stackoverflow.com/questions/11204120/email-keyboard-for-edit-text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!