如何让 android 键盘显示“.com”按钮
我有一个EditText
。我的 EditText
的 imeOptions
属性是 actionGo
。我需要做什么才能让它显示“.com”键?
I have an EditText
. My imeOptions
attribute for the EditText
is actionGo
. What do I have to do to make it display a '.com' key?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为这是由 android:inputType 控制的。
尝试
textUri
。This is controlled by android:inputType i think.
Try
textUri
.为此,您必须为编辑文本提供输入类型属性才能执行此操作。
For this you have to provide your edittext with input type attribute to do this.
使用 EditText 属性
android:inputType="textWebEditText"
应该为您提供 .com 和适用的网络按钮Using the EditText attribute
android:inputType="textWebEditText"
should give you the .com and applicable web buttons