1

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,VideoProfile.STATE_BIDIRECTIONAL); 

How do I make a video call?

Christian Gollhardt
  • 16,510
  • 17
  • 74
  • 111
tykim
  • 29
  • 6
  • 1
    Possible duplicate of [How to make video call programmatically on Android 2.2 or higher?](https://stackoverflow.com/questions/7121623/how-to-make-video-call-programmatically-on-android-2-2-or-higher) – Kromster Dec 20 '18 at 12:30

1 Answers1

2
Intent videocall= new Intent("com.android.phone.videocall");
videocall.putExtra("videocall", true);
videocall.setData(Uri.parse("tel:" + [your number]));
activity.startActivity(videocall);
Haris ali
  • 773
  • 1
  • 13
  • 19