3

我正在尝试在我自己的 android 应用程序中嵌入从 google hangout 提供的视频通话。

如果这是可能的,我不知道,但我做了很多研究,找不到任何东西。

好吧,有人可以给我一个提示,我可以如何做到这一点,或者我可以通过其他第三方来做到这一点。

谢谢。

4

2 回答 2

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);
于 2014-11-08T10:36:01.410 回答
0

对于视频环聊,您可以使用:

Intent sky = new Intent( 
    Intent.ACTION_VIEW,
    Uri.parse("https://plus.google.com/hangouts/_/107117483540235115863"));
startActivity(sky);
于 2014-11-08T10:39:28.683 回答