Is it possible to program an entrepreneur user from android as what we do in Skype (Skype:username?call&video=true) ? I tried for Skype and it works great. But I did not get the right solution for Hangouts. I saw the code modules in android for calling Hangouts from the link, but I didn’t get the right solution to call the hangout user from Hangouts installed on the Android device.
For Skype, I have this:
Intent skypeIntent = new Intent(Intent.ACTION_VIEW); String contactUserName="helpdesk"; skypeIntent.setData(Uri.parse("skype:" + contactUserName + "?call&video=true"));
The above code calls the corresponding Skype user by accessing the installed Skype application on the Android device.
Similarly, I would like to do the same for Hangouts. that is, make calls from an Android phone from a software point of view from a video call into a video call.
This will be useful if I get a solution for ooVoo.
android android-intent skype hangout voip
user3256259
source share