gpt4 book ai didi

android - 从 Android 应用向 Google Assistant 发送命令

转载 作者:太空狗 更新时间:2023-10-29 16:27:28 29 4
gpt4 key购买 nike

为了提高效率,我想通过脚本从 Android 应用程序向 Google 智能助理发送常用命令。例如。 “好的,谷歌。

这是我用于从服务调用助手的代码:

startActivity(new Intent(Intent.ACTION_VOICE_COMMAND).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));

我找到了这个topic ,它表示这对于使用 Google Assistant SDK 的 Raspberry Pi 是不可能的。 Android 应用也一样吗?

最佳答案

设法让它工作:

String command = "navigate home by public transport";
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
intent.setClassName("com.google.android.googlequicksearchbox", "com.google.android.googlequicksearchbox.SearchActivity");
intent.putExtra("query", command);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //necessary if launching from Service
context.startActivity(intent);

来源:StackOverflow question

关于android - 从 Android 应用向 Google Assistant 发送命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46826826/

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