我使用Dialogflow API制作了语音/短信的演示应用。我将该代理与Google操作集成在一起。现在,我想在点击时从我的应用中打开Google智能助理。我想在用户打开谷歌助手时传递第一条消息。
我使用了此代码
Intent intent = new Intent(Intent.ACTION_VOICE_COMMAND);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
String hello = "talk to my test app";
intent.putExtra(hello,hello);
startActivity(intent);
请帮忙!