Skip to content Skip to sidebar Skip to footer

Android Api 19 : Onbackpressed I Want To Close The Application And Show All The Installed Apps

Intent intent = new Intent(Intent.ACTION_ALL_APPS); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); intent.setFl

Solution 1:

Try this code:

    Intent i = newIntent();
    i.setAction(Intent.ACTION_MAIN);
    i.addCategory(Intent.CATEGORY_HOME);
    i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    startActivity(i);
    System.exit(0);

But it is advisable to handle all onBackPressed() methods in your Activites to maintain a smooth flow of youe applicatin.

Post a Comment for "Android Api 19 : Onbackpressed I Want To Close The Application And Show All The Installed Apps"