我正在尝试使用我SEARCH_ACTION
中的这段代码将Google即时AndroidManifest.xml
与我的可搜索活动相关联:
<activity android:name=".SearchableActivity">
<intent-filter>
<action android:name="com.google.android.gms.actions.SEARCH_ACTION"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
我正在关注http://android-developers.blogspot.com/2014/10/the-fastest-route-between-voice-search.html和https://developer.android.com/guide/components/intents-common.html#SearchOnApp上的说明。
这不起作用。 Google即时搜索未启动我的应用。我已经证实:
SearchableActivity
代码没有任何问题。任何人都有这个工作吗?能不能让我知道我在这里失踪了什么?
答案 0 :(得分:2)
嗯......看起来应用需要在Play商店发布: https://plus.google.com/+AndroidDevelopers/posts/afSRdDQiy1N - 寻找Jarek Wilkiewicz的评论。接下来试试这个。