3

我正在尝试将我的应用添加到 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>

如果还有想看的请留言:)

4

1 回答 1

0

您是否尝试将字符串资源用于标签和提示?

而不是硬编码的字符串,尝试这样的事情:

android:label="@string/label_string"
android:hint="@string/hint_string"
于 2014-05-15T01:22:30.827 回答