Skip to content Skip to sidebar Skip to footer

How Do I Make A Video Call?

This becomes a voice call: Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse('tel:01012345678')); intent.putExtra(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE,VideoProf

Solution 1:

Intent videocall= new Intent("com.android.phone.videocall");
videocall.putExtra("videocall", true);
videocall.setData(Uri.parse("tel:" + [your number]));
activity.startActivity(videocall);

Post a Comment for "How Do I Make A Video Call?"