2

com.google.android.gms.actions.SEARCH_ACTIONすでに Google Play (プライベート チャネル) に公開し、携帯電話にダウンロードしたアプリで、Google システムの音声アクション「アプリで検索」( ) を正常に使用できません。

検索アクションからのクエリ エクストラを含むインテントはMainActivity、インテント フィルターに一致した後に渡されます。

adbアプリを公開する前に、完全に機能する以下のコマンドを使用してアプリをテストしました。

adb shell am start -a "com.google.android.gms.actions.SEARCH_ACTION" --es query "[query]" -n "com.testapp/.MainActivity"

以下は、インテント フィルターを含む Android マニフェストです。

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.testapp" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="23" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:name=".app.AppController"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        android:allowTaskReparenting="true">

        <meta-data
            android:name="com.google.android.gms.version" 
            android:value="@integer/google_play_services_version" />

        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:exported="true"
            android:launchMode="singleTop" >

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <intent-filter>
                <action android:name="com.google.android.gms.actions.SEARCH_ACTION" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <category android:name="android.intent.category.VOICE" />
            </intent-filter>

            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <category android:name="android.intent.category.VOICE" />
            </intent-filter>

            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <category android:name="android.intent.category.VOICE" />
            </intent-filter>

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

            <meta-data
                android:name="android.app.default_searchable"
                android:value=".MainActivity" />

        </activity>

    </application>

</manifest>

Google 音声操作に必要なインテント フィルタは正しく設定されていますか? その場合、Google アプリを使用してアプリ内のキーワードを検索できないのはなぜですか? または(個人的な推測のみ)、Googleアプリがアプリのコンテンツ/インテントフィルターなどを「キャッシュ/処理」するのに必要な時間、アプリ名と検索キーワードが十分に「一意」ではない、または事実などの他の考慮事項はありますかアプリが代わりにプライベート チャネルに配布されていることを確認しますか?

以前に Google Voice Actions の実装に成功したことがある方は、情報を共有して提供していただけることを願っています。

4

1 に答える 1

2

このブログ投稿から、次のような回答を見つけました。

特定のアプリ名を使用する音声操作では、名前が Google によってインデックスに登録されるように、アプリをアプリ ストアに公開する必要があります。

これが正確であれば、アプリが公開された後でも、「 [アプリ名] で [キーワード] を検索」というコマンドが成功するためには、Google がアプリの名前を関連付けるのに時間がかかることを意味します。これは、アプリが公開されていて、Google Play のプライベート チャンネルにない場合に、より効果的です。

于 2016-03-07T05:46:07.217 に答える