Android : How to finish andriod activity?

on Saturday, April 18, 2015



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))?"


0 comments:

Post a Comment