在语音交互 API 的 Google CodeLabs 示例中,活动是使用以下意图过滤器定义的(请参阅步骤 6):
<intent-filter>
<action android:name="android.media.action.STILL_IMAGE_CAMERA" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.VOICE" />
</intent-filter>
使用“OK Google,自拍”语音命令时,会使用android.intent.category.VOICE
类别触发意图。这在 LogCat 中显示为:
02-26 15:32:42.423 779-6923/? I/ActivityManager: START u0 {act=android.media.action.STILL_IMAGE_CAMERA cat=[android.intent.category.VOICE] flg=0x18000000 pkg=com.example.android.voicecamera cmp=com.example.android.voicecamera/.TakePictureActivity (has extras)} from uid 10027 on display 0
在我自己的应用程序中,我已将以下意图过滤器添加到我的语音搜索活动中:
<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.VOICE" />
</intent-filter>
但是,如果我给出“OK Google,在 [my app] 上搜索计算机”,则语音类别不会添加到意图中:
02-26 16:17:26.722 779-14786/? I/ActivityManager: START u0 {act=com.google.android.gms.actions.SEARCH_ACTION pkg=com.my.pkg cmp=com.my.pkg/.activity.VoiceSearchActivity (has extras)} from uid 10027 on display 0
因为这个类别在 Intent 中没有正确设置,Activity.isVoiceInteraction()
并且Activity.isVoiceInteractionRoot()
都在返回false
。
谁能解释为什么会发生这种情况?
谢谢!