在Android中启动谷歌环聊

Cse*_*elt 6 android google-plus hangout

我想与特定人员开始新的环聊对话,但我找不到任何代码.这有什么简单的解决方案吗?我尝试进行skype调用,并且它很容易实现.

这是skype代码:

                Intent sky = new Intent("android.intent.action.VIEW");
                sky.setData(Uri.parse("skype:" + nickname));
                startActivity(sky);
Run Code Online (Sandbox Code Playgroud)

我想要类似的东西.(或者用skype如何进行电话会议?)

Cse*_*elt 2

我想我找到了解决方案,它很简单,这是代码:

Intent sky = new Intent("android.intent.action.VIEW", Uri.parse("https://talkgadget.google.com/hangouts/extras/talk.google.com/myhangout"));
startActivity(sky);
Run Code Online (Sandbox Code Playgroud)

你只需要提供hangout的url,但不幸的是谷歌暂停了命名的hangout,所以这个url每次都会改变。:(