0

此处列出了 Amazon Fire 设备上支持的意图: https ://developer.amazon.com/it/docs/fire-tablets/ft-supported-android-intents.html

还支持 ACTION_WEB_SEARCH 意图,就像在 Android 上一样。

此代码适用于 Google Android 设备(非亚马逊设备)

    String string = query;

    Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);

    intent.setClassName("com.google.android.googlequicksearchbox", "com.google.android.googlequicksearchbox.SearchActivity");
        intent.putExtra("query", string);
        activity.startActivity(intent);

它调用了一个可能与谷歌助手相关的搜索界面。

结果来自谷歌搜索,但也来自设备,即可用的功能或数据,我认为。

ACTION_SEARCH 意图也是如此。

没有像预期的那样调用默认的 Internet 浏览器。

Amazon Fire 设备上会发生什么?

我想调用相同的搜索助手,而不是互联网浏览器。

4

0 回答 0