Search This Blog

Friday, March 25, 2016

CLOSE APP

System.exit(0);

OR 

finish();
OR 
Intent a = new Intent(Intent.ACTION_MAIN);
a.addCategory(Intent.CATEGORY_HOME);
a.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(a);

No comments:

Post a Comment