Wednesday, 16 December 2015

making phone call progmatically in android

    Intent callIntent = new Intent(Intent.ACTION_CALL);
 callIntent.setData(Uri.parse("tel:1234567899"));
 startActivity(callIntent);

No comments:

Post a Comment