android视频通话

时间:2011-05-19 09:57:13

标签: android

在android中进行语音通话我们使用下面的代码

                        Intent intent = new Intent(Intent.ACTION_CALL);
                intent.setData(Uri.parse("tel:+436641234567"));
                startActivityForResult(intent,0);

那么视频通话的意图或代码是什么

1 个答案:

答案 0 :(得分:0)

如果两个用户都有3G连接,则很容易进行视频通话。我做了一个示例代码,在按钮单击时,会向一个号码发起呼叫。我在onclick监听器中编写了以下代码:

   Intent callIntent = new Intent("com.android.phone.videocall");
        callIntent.putExtra("videocall", true);
        callIntent.setData(Uri.parse("tel:" + phonenumber));
        startActivity(callIntent);