0

onSearchRequested() を呼び出すと、画面の上部に検索バーが表示され、左側にアプリのロゴが表示されます。このアイコンを、検索のコンテキストに関係する別のアイコンに変更したいのですが、可能ですか?

4

1 に答える 1

0

According to SDK there is no such method to do that. Apparently it picks up the logo of application.

However you can change the description.

<?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>
于 2012-08-16T15:09:09.637 に答える