打开某些Android键盘

发布于 2024-10-28 23:04:54 字数 102 浏览 1 评论 0原文

我注意到,有些应用程序当您单击诸如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

莫言歌 2024-11-04 23:04:54

如果布局上有更多 edittext 字段,并且想要用下一个按钮替换回车符,则可以更改布局 xml 中的 IME 选项:

<EditText android:imeOptions="actionNext" ....></EditText>

这会将焦点更改为下一个 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:

<EditText android:imeOptions="actionNext" ....></EditText>

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

圈圈圆圆圈圈 2024-11-04 23:04:54

尝试将单行属性设置为 EditText

Try to set single line property to EditText

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文