全局搜索在Android 4.4中未按预期运行

时间:2013-11-15 13:15:27

标签: android android-4.4-kitkat android-search

我有一个应用程序有两个搜索建议提供程序,它们都扩展SearchRecentSuggestionsProvider,我已使用以下Intent过滤器和元数据在清单文件中正确设置它:

<intent-filter>
   <action android:name="android.intent.action.SEARCH" />
</intent-filter>

<meta-data
   android:name="android.app.searchable"
   android:resource="@xml/searchable_tv" />

searcable资源包括android:includeInGlobalSearch="true",所以应该没问题。

我显然也有一个提供者:

<provider
   android:name="com.miz.contentprovider.TvShowContentProvider"
   android:authorities="com.miz.contentprovider.TvShowContentProvider"
   android:exported="true" />

这一切在Android 4.3中使用Google搜索应用程序运行得很好,但我刚刚将所有设备更新到Android 4.4,我无法再在我的应用程序中搜索内容。在操作系统更新之前工作的其他应用程序也是如此,即Google Play音乐。

我在XDA开发人员上找到了一个提及此问题的帖子,如果它有帮助:http://forum.xda-developers.com/showthread.php?p=47472102

有没有人知道发生了什么或如何修复它?

更新:我可以确认它只发生在安装了Android 4.4的设备上。我使用最新的Google搜索更新在Android 4.3设备上进行了测试,并且按预期工作。看起来这是Google更新中的一个错误。

3 个答案:

答案 0 :(得分:8)

我在AOSP中发现了这个提交,这可能是相关的: https://android.googlesource.com/platform/packages/apps/QuickSearchBox/+/ecf356c15143ab0583c64682de16d94a57f7dd1c

提交消息告诉我们这个功能由于性能原因而被删除(可能会或可能不会,因为它引用了内部故障单ID并且我没有在官方bugtracker上找到相关问题)

答案 1 :(得分:5)

我与Google的联系人核对过,App Indexing正在取代这个。文档将被更新以显示已弃用,并且无法在没有系统级权限的情况下使用此功能(如iDev所示)。

答案 2 :(得分:1)

自上次更新(v31)以来,Google Chrome现已成为可搜索的应用。

系统应用程序:

尝试这样

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.globalsearch" android:sharedUserId="android.uid.shared">
    <uses-permission android:name="android.permission.GLOBAL_SEARCH" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" />
    <application android:label="@string/global_search" android:process="android.process.acore">
        <activity android:name=".GlobalSearch" android:permission="android.permission.GLOBAL_SEARCH_CONTROL" android:stateNotNeeded="true" android:theme="@android:style/Theme.NoDisplay" android:excludeFromRecents="true">
            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <!-- This must be higher than the default priority (0), which
is what GoogleSearch uses. -->
            <intent-filter android:priority="500">
                <action android:name="android.search.action.GLOBAL_SEARCH" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
        </activity>
        <activity android:name=".SearchSettings" android:label="@string/search_settings">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.search.action.SEARCH_SETTINGS" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <provider android:name=".SuggestionProvider" android:authorities="com.android.globalsearch.SuggestionProvider" android:permission="android.permission.GLOBAL_SEARCH_CONTROL" />
        <provider android:name=".StatsProvider" android:authorities="com.android.globalsearch.stats" android:permission="android.permission.GLOBAL_SEARCH_CONTROL" />
        <meta-data android:name="android.app.default_searchable" android:value=".GlobalSearch" />
    </application>
</manifest>