Thursday, 18 December 2014

simple call Intent in android


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

No comments:

Post a Comment