Wednesday 12 December 2012

Kill all activity when log-out in Android

 Intent intent  = new Intent(getBaseContext(), LoginActivity.class);
         intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);        
         startActivity(intent);
         finish();

No comments:

Post a Comment