这个问题在这里已经有答案了:
android:如何让键盘输入键说“搜索”并处理它的点击(6个答案)
4个月前关门了。
有人能帮我吗?我正在使用searchview来查找列表中的位置。我想改变背景颜色和图标的行动按钮的软键盘。请记住,searchview不在工具栏中。
这是我的密码:
xml格式:
<androidx.appcompat.widget.SearchView
android:id="@+id/search_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:theme="@style/AppSearchView"
android:imeOptions="actionSearch|flagNoExtractUi|flagNoFullscreen"
android:inputType="text"
app:queryHint="Search something..."/>
1条答案
按热度按时间rn0zuynd1#
你可以用
searchView.setBackgroundColor(Color.WHITE);
更改searchview的背景色。要更改键盘图标,可以使用
android:imeOptions
在你的edittext标签上。如:
你可以在android开发者网站上找到更多的选择。