Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 21st, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 27  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Android inbuilt Video Calling
  2. private void startVideoCall(String number){
  3.  
  4.     Intent intent = new Intent("com.android.phone.videocall",Uri.parse("tel:"+number));
  5.     intent.putExtra("videocall", true);
  6.     startActivity(intent);
  7. }