Android 键盘“Go”按钮“搜索”
任何人都可以告诉如何用“搜索”代替 Android 键盘中的“执行”或“完成”按钮。 (不是放大镜)。
can any one tell how to get "Search" in place of "Go" or "Done" button in android keyboard. (not magnifying glass ) .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
像这样的东西
可能会起作用。在您的情况下,
还有其他选项,例如
编辑,
请也检查此线程。 LINK
根据上述链接,您只能在横向中获取全文模式。
所以我想你可以使用
android:imeOptions="actionSearch"
并且文本Search
将仅以横向显示。something like this
might work. in your case
there are also other options like
EDIT
please check this thread as well. LINK
accroding to the above link you get full text only in landscape mode.
so i guess you can use
android:imeOptions="actionSearch"
and the textSearch
will appear in landscape only.尝试
myEditText.setImeActionLabel("搜索",EditorInfo.IME_ACTION_UNSPECIFIED)
。IME_ACTION_UNSPECIFIED
允许您在按钮中放置任何您想要的文本。Try
myEditText.setImeActionLabel("Search",EditorInfo.IME_ACTION_UNSPECIFIED)
.IME_ACTION_UNSPECIFIED
allows you to put whatever text you want in the button.试试这个:
添加“android:singleLine”即可正常工作
Try this:
Add "android:singleLine" to work properly
在 EditText 标记中添加以下两行:
并将 setOnEditorActionListener() 方法添加到 editText,如下所示:
Add below two line in your EditText tag :
And Add the setOnEditorActionListener() method to editText as below: