当我调用onSearchRequested()时如何更改Android搜索栏中的徽标

时间:2012-08-16 14:58:59

标签: android search android-actionbar

当我调用onSearchRequested()时,屏幕顶部会出现一个搜索栏,左侧是我的应用徽标。我想将此图标更改为与搜索上下文有关的另一个图标...这可能吗?

1 个答案:

答案 0 :(得分:0)

根据SDK,没有这样的方法可以做到这一点。显然它拿起了应用程序的标志。

但是您可以更改说明。

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:label="@string/app_name"
    android:hint="@string/settings_description" 
    android:includeInGlobalSearch="true"
    android:searchSettingsDescription="@string/settings_description"
    android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"
    >
</searchable>