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

Untitled

By: a guest on May 27th, 2012  |  syntax: None  |  size: 0.18 KB  |  hits: 11  |  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: Make a phone call, but users need to pick it up
  2. Intent callIntent = new Intent(Intent.ACTION_CALL);
  3. callIntent.setData(Uri.parse("tel:123456789"));
  4. startActivity(callIntent);