gpt4 book ai didi

android - 如何从 Android 应用程序向 Google 智能助理发送文本查询

转载 作者:行者123 更新时间:2023-11-29 02:24:52 31 4
gpt4 key购买 nike

我正在尝试启动 Google 智能助理并在按下按钮时从我的应用程序发送文本问题(不是语音)。例如:我点击一个按钮,Google 智能助理会回答我的问题“今天天气怎么样?”。

这可能吗?

编辑:当我按下按钮时,我希望 Google 智能助理执行一些操作并提供语音反馈。例如:“阅读明天的天气并将闹钟设置为早上 6.30”。

最佳答案

看起来您可以从直接包类名中引用它。

String queryString = "How is the weather today?";
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
intent.setClassName("com.google.android.googlequicksearchbox",
"com.google.android.googlequicksearchbox.SearchActivity");
intent.putExtra("query", queryString);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

关于android - 如何从 Android 应用程序向 Google 智能助理发送文本查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52822530/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com