ユーザーがホーム画面からアプリを検索できるように、アプリを Android のグローバル検索に追加しようとしています。http://developer.android.com/guide/topics/search/search-dialog.htmlのチュートリアルに従いましたが、うまくいかないようです。アプリをテストして、検索可能なすべてのアプリが表示される設定の部分に移動すると、アプリが表示されません。これが私のコードの一部です:
メインフェスト:
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
これはもちろんタグ内にあります。
searchable.xml (res/xml/searchable.xml):
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:includeInGlobalSearch="true"
android:voiceSearchMode="showVoiceSearchButton"
android:label="Holo Wikipedia Search"
android:hint="Search Wikipedia" >
</searchable>
他に見たいものがある場合は、コメントを残してください:)