Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

start google hangouts in android

I want to start a new hangout conversation with given people, but I can't find any code for it. Is there any easy solution to do this? I tryed to make skype call, and it worked easyly with an intent.

Here is the skype code:

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

I want something similar to this. (Or with skype how can I make a conference call? )

like image 419
Cselt Avatar asked Jun 20 '12 19:06

Cselt


People also ask

How do I turn on Google Hangouts?

1.) Tap on More (...) in the lower right of your screen on mobile (iOS/Android) and lower left on cloze.com. 3.) Tap on Connected Accounts to expand the section and then tap on the gear icon next to your Google Account and enable Google Hangouts.

Does Google Hangouts work on Android?

Google Hangouts is a unified communications service that allows members to initiate and participate in text, voice or video chats, either one-on-one or in a group. Hangouts are built into Google+ and Gmail, and mobile Hangouts apps are available for iOS and Android devices.


1 Answers

There is currently no way to create a Google+ hangout on an android device using an intent or any other API.

This would be a pretty cool feature, though. If you request it, they might add it.

like image 55
mimming Avatar answered Sep 18 '22 16:09

mimming