我正在尝试在我自己的Android应用中嵌入谷歌视频群聊提供的视频通话。
如果这是可能的话我不会,但我做了很多研究,找不到任何东西。
有人可以给我一个提示,告诉我如何做到这一点,或者我可以做其他第三方。
感谢。
答案 0 :(得分:0)
尝试此操作进行视频群聊:
Uri imUri = new Uri.Builder().scheme("imto").authority("gtalk")
.appendPath("example@gmail.com").build();
Intent intent = new Intent(Intent.ACTION_SENDTO, imUri);
intent.setComponent(new ComponentName("com.google.android.talk",
"com.google.android.talk.SigningInActivity"));
startActivity(intent);
答案 1 :(得分:0)
对于视频环聊,您可以使用此功能:
Intent sky = new Intent(
Intent.ACTION_VIEW,
Uri.parse("https://plus.google.com/hangouts/_/107117483540235115863"));
startActivity(sky);