Android 11 语音搜索按钮不显示

Android 11 Voice search button doesn't show

Android 11中,当targetSdk设置为30并启用语音搜索时,SearchView上不显示麦克风图标。但是,如果 targetSdk 设置为 29,它可以正常工作。它也可以在 Android 10 设备上使用 targetSdk 30
30还有什么需要做的吗?

menu.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <item
        android:id="@+id/action_search"
        android:title="Search"
        app:actionViewClass="androidx.appcompat.widget.SearchView"
        app:showAsAction="always" />
</menu>

Manifest.xml

<activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data
                android:name="android.app.searchable"
                android:resource="@xml/searchable" />

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

searchable.xml

<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:label="@string/app_name"
    android:hint="Search"
    android:imeOptions="actionSearch"
    android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"/>

MainActivity

override fun onCreateOptionsMenu(menu: Menu): Boolean {
        menuInflater.inflate(R.menu.search, menu)

        val searchManager = getSystemService(Context.SEARCH_SERVICE) as SearchManager
        val searchView: SearchView = menu.findItem(R.id.action_search).actionView as SearchView
        val searchableInfo = searchManager.getSearchableInfo(componentName)
        Log.d(TAG, "onCreateOptionsMenu: ${searchableInfo.voiceSearchEnabled}, ${searchableInfo.voiceSearchLaunchRecognizer}")

        searchView.setSearchableInfo(searchableInfo)
        searchView.setIconifiedByDefault(false)
        return super.onCreateOptionsMenu(menu)
    }

Android 11 不允许检查所有已安装的应用程序,因此我们需要添加一个 queries 块以允许应用程序看到 voice search 应用程序。

在麦克风图标显示的 manifest 标签下方的 AndroidManifest.xml 中添加:

 <queries>
        <intent>
            <action android:name="android.speech.action.RECOGNIZE_SPEECH" />
        </intent>
 </queries>

Package visiblility in Android 11

注意:如果出现构建错误(不是 lint 警告)说 queries element not allowed,请确保更新构建工具版本:

图片来自https://android-developers.googleblog.com/2020/07/preparing-your-build-for-package-visibility-in-android-11.html