打开某些Android键盘
我注意到,有些应用程序当您单击诸如 edittext 之类的内容时会出现回车符,而其他应用程序则有一个下一个按钮来代替回车符。我认为默认情况下是回车符,所以我想知道如何将其更改为下一个按钮。
I've noticed that some apps when you click on something like edittext has a carriage return while others have a next button in place of a carriage return. I think the carriage return in the default so I'm wondering how you change it to a next button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果布局上有更多 edittext 字段,并且想要用下一个按钮替换回车符,则可以更改布局 xml 中的 IME 选项:
这会将焦点更改为下一个 edittext 字段。
在这里阅读更多相关信息:http://developer.android.com/resources /articles/on-screen-inputs.html
If you have more edittext fields on a layout and want to replace the carriage return with a next button you can change the IME options in the layout xml:
This will change the focus to the next edittext field.
Read more about it here: http://developer.android.com/resources/articles/on-screen-inputs.html
尝试将单行属性设置为 EditText
Try to set single line property to EditText