Google 语音助手命令无法执行操作 CREATE_NOTE

Google voice assistant command not working for action CREATE_NOTE

您好,我想通过 CREATE_NOTE 操作执行 activity,因为我在下面的代码

AndroidMenifest.xml

        <activity android:name=".activities.VoiceSearchActivity">
            <intent-filter>
                <action android:name="com.google.android.gms.actions.CREATE_NOTE"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:mimeType="text/plain"/>
            </intent-filter>
        </activity>

我还没有在 Google Play 商店中发布我的应用程序,因此出于测试目的,我在 Android 的终端

中使用了以下代码
adb shell am start -a com.google.android.gms.actions.CREATE_NOTE  com.vocieserach.example

但每次我都低于错误

Error: Activity not started, unable to resolve Intent { act=com.google.android.gms.actions.CREATE_NOTE flg=0x10000000 pkg=com.vocieserach.example }

任何人都可以帮我解决问题

我终于通过在终端中执行以下行来完成

adb shell am start -a com.google.android.gms.actions.CREATE_NOTE -t "text/plain" -e query VoiceSearch com.vocieserach.example


adb shell am start -a com.google.android.gms.actions.CREATE_NOTE -t "text/plain" -e "android.intent.extra.TEXT" "ADD BG READING 15 WITH DATE 11/05/2018 11:10:00 AM"