Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
This code start new activity. My question is "How can I close/finish this activity(which start in line startActivity(callIntent))?"
No comments:
Post a Comment