我正在尝试向我的music app
添加语音操作。当我做声音动作时说:
播放
Someone like you
谷歌语音搜索认出它是一首歌,它让用户选择用什么应用打开这个意图(其中包括我的应用)。点击我的应用程序时,我按预期收到了索尼名称。
我注意到我可以说:
在
上播放Someone like you
Google Music
这会让谷歌语音搜索在短暂的超时后直接打开谷歌音乐。
= - = - =
所以不起作用的是我不能使用Play [Music] on [My App]
;这会给我一个谷歌搜索结果。
我基本上是从this blog复制了我的代码,我想知道为了使Play [Music] on [My App]
能够工作还有什么额外的工作吗?
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.github.kylelam.musicvoiceaction" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>