searchview:使用searchview设置操作按钮的背景色和图标

rhfm7lfc  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(519)

这个问题在这里已经有答案了

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..."/>

rn0zuynd

rn0zuynd1#

你可以用 searchView.setBackgroundColor(Color.WHITE); 更改searchview的背景色。
要更改键盘图标,可以使用 android:imeOptions 在你的edittext标签上。
如:

<EditText
android:imeOptions="actionSearch" 
android:inputType="text" />

你可以在android开发者网站上找到更多的选择。

相关问题