How to clear the Android Stack of activities?
问题 I have an application with several Activities in Android and I want the user to be able to log-out by pressing a menu button. The problem I have is that A) Android doesn't let you terminate the application and B) even when I send the user to the LoginActivity again they can always press back and get right back to the previous activity they were in. I already tried to launch the Activity with the two following flags: Intent intent = new Intent(this, LoginActivity.class); intent.setFlags(Intent