退出一个Android应用程序 [英] Exit an android app

查看:114
本文介绍了退出一个Android应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何关闭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()

这篇关于退出一个Android应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆