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

时间:2018-11-02 10:00:40

标签: android google-voice

您好,我想通过以下代码执行CREATE_NOTE操作来执行活动

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 }

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

1 个答案:

答案 0 :(得分:1)

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

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"