Android:启动Login活动时关闭所有活动

Abd*_*del 3 android android-activity

我有两个活动Login和Main,当用户启动应用程序时,Main活动开始并验证用户是否登录,如果没有,则app会将用户重定向到登录活动.

一切正常,但问题是当后退按钮点击登录活动时,应用程序启动活动主要,我希望应用程序退出..
请帮助.

Mit*_*hah 7

                Intent i = new Intent(First_screen.this, Second_screen.class);
                i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
                startActivity(i);
                finish();
Run Code Online (Sandbox Code Playgroud)

当你去second_screen...它将清除之前的所有其他活动..