初始键盘为小写
当我单击输入文本时,键盘的第一个字母以大写开头。当我输入电子邮件时,理想的总是小写。可以通过编程方式设置吗?
When I click on a InputText, the first letter of the keyboard begins on uppercase. As I am entering an e-mail, the ideal would always be lowercase. Is possible set this programatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 XML 文件中,您可以使用 android:inputType 。设置该字段是电子邮件输入类型。
通过编程方式,您可以使用 setInputType()
您可以指定
myEditText
是 XML 文件中的电子邮件字段:或者以编程方式:
In your XML file, you can use android:inputType. to set the field is a email input type.
Programmatically, you can do that with setInputType()
You can specify that
myEditText
is an email field in your XML file :Or programmatically:
请参阅
TextView.setInputType
和inputType
。See
TextView.setInputType
andinputType
.