在 XML 中为 EditText 指定虚拟键盘类型
我正在创建一个ListActivity。在每个列表项中,我都有一个创建的视图,其中包含一个评级栏和一个编辑文本。在底部的屏幕截图中,您可以看到虚拟键盘包含一个回车键,并且没有“完成”键。我想指定使用不同风格的键盘(并希望保留拼写检查栏)。我希望我的虚拟键盘有一个“完成”键而不是返回键。我可以在 EditText 的 XML 中设置我想要的虚拟键盘样式吗?如果是这样,怎么办?
感谢您的帮助
I'm creating a ListActivity. In each list item I have a View I've created which contains a RatingBar and an EditText. In the screenshot at the bottom, you can see the virtual keyboard contains a returnline key and no "Done" key. I would like to specify a different style of keyboard to use (and hopefully retain the spell checking bar). I would like my virtual keyboard to have a "Done" key instead of a return key. Can I set the style of virtual keyboard I'm wanting in the EditText's XML? If so, how?
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 android:imeOptions 或 TextView#setImeOptions()。查看文档。
Try android:imeOptions or TextView#setImeOptions(). Check the docs.
它看起来
主要是我想要的。不过,它只允许我的 EditText 为 1 行。
It would appear
does mostly what I want. It only allows me to have my EditText be 1 row, though.