我正在尝试将我的应用添加到 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" />
这当然是在标签内。
可搜索的.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>
如果还有想看的请留言:)