退出一个Android应用程序应用程序、Android

2023-09-13 00:10:40 作者:没死就别把自己当废物

如何关闭Android应用程序,如果一个以上的活动处于活跃状态?

How to close an android app if more than one activity is in active state?

推荐答案

我对这个问题的一个简单的解决方案

I got an easy solution for this problem

在活动中,您$ P $使用下面的源$ C ​​$ C PSS退出按钮进入第一个活动。请阅读FLAG_ACTIVITY_CLEAR_TOP也是文档。

From the activity you press the exit button go to the first activity using the following source code. Please read the documentation for FLAG_ACTIVITY_CLEAR_TOP also.

Intent intent = new Intent(ExitConfirmationActivity.this, FirstActivity.class);
            intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            startActivity(intent);

现在使用完成此改变第一个活动的onResume()()

Now overide onResume() of the first activity using finish()