键盘上方需要有上一个和下一个按钮
我想在键盘上方显示带有“上一个”、“下一个”按钮的虚拟键盘。
当用户单击“上一个”按钮时,光标应移动到上一个编辑文本输入字段,单击“下一个”按钮应转到视图中的下一个编辑文本字段。
我想在我自己的活动中使用这些按钮。我该怎么做?
I want to show the virtual keyboard with Prev, Next Buttons above the keyboard.
When the user clicks prev button, cursor should move to the previous edit-text input field and clicking on next button should go to the next edit-text field in the view.
I want to use those buttons in my own activity. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可以通过将 android:windowSoftInputMode="adjustPan" 添加到 Activity 来实现
清单中的元素。例如,
这可以防止显示虚拟键盘时调整视图大小。
This can be achieve by adding android:windowSoftInputMode="adjustPan" to activity
element within the manifest. E.g.
This prevents the view from resizing when the virtual keyboard is displayed.
您可以在布局中为 Edittext 设置适当的 IME 选项。
并完成
android:imeOptions="actionDone"
You can set proper IME option for the Edittext in the Layout.
and for done
android:imeOptions="actionDone"