我正在为我的应用程序实现可搜索,我遇到了这个问题。如何更改可搜索的默认放大镜?默认看起来又大又丑,我更喜欢使用与我的菜单图标相同的可绘制对象。
在可搜索配置中搜索“图标” - Android 开发者网站不会提供任何有用的信息。我还尝试将android:icon
(这是选项卡中的一个Structure
选项)添加到我的可搜索定义中,但它不起作用。
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:hint="@string/search_hint"
android:icon="@drawable/ic_custom_test"
android:includeInGlobalSearch="true"
android:label="@string/search_label"
android:searchSettingsDescription="@string/settings_description"
android:searchSuggestAuthority="com.test.provider.SuggestionProvider"
android:searchSuggestIntentAction="android.intent.action.VIEW"
android:searchSuggestIntentData="content://com.test.provider.SuggestionProvider/info"
android:searchSuggestSelection=" ?"
android:searchSuggestThreshold="1" >
</searchable>
提前感谢您的帮助!