Clear all previous activity in Android:
If we open new activity.All previous activity are in queue like list of stack activities.so if you want kill all previous activities follow below methodSnippet:
Intent i=new Intent (Current_Activity.this,NextActivity.class); //set the new task and clear flags i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_CLEAR_TASK); startActivity(i); |
No comments:
Post a Comment