如何在android中删除搜索按钮软键盘?

时间:2013-10-24 13:03:23

标签: android search button android-softkeyboard

我想从下图中显示的软键盘中删除搜索按钮,怎么做? enter image description here

2 个答案:

答案 0 :(得分:2)

大量搜索后android:imeOptions="actionNone"。将此添加到您的SearchView xml代码中。

<androidx.appcompat.widget.SearchView
                        android:id="@+id/searchView"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:focusable="false"
                        android:imeOptions="actionNone"
                        android:queryBackground="@android:color/transparent"
                        app:iconifiedByDefault="false"
                        app:queryHint="Search Name" />

它将替换为下一个“行”图标,您应首先尝试使用此图标。谢谢,我以后。

答案 1 :(得分:0)

除了Bill Gary建议的内容之外,您还可以在setImeOptions()对象上致电SearchView