Clear Backstack Of Application In Android On Button Click
I am developing app in which i want clear all my back-stack on click of log out button. i have searched and tried many solutions given but its not working for me. please if anyone
Solution 1:
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_CLEAR_TASK);
above is working for me but Intent.FLAG_ACTIVITY_CLEAR_TASK
is available from API 11
Solution 2:
use in manifest android:noHistory="true"
Post a Comment for "Clear Backstack Of Application In Android On Button Click"