如何使用退出按钮销毁具有所有活动的应用程序

时间:2012-04-11 07:39:47

标签: java android

我想在点击退出按钮时销毁整个应用程序....

3 个答案:

答案 0 :(得分:0)

Android 中没有退出按钮概念。只需在您的活动上致电finish();即可销毁它们。

答案 1 :(得分:0)

最直接的方式是

finish();
System.exit(0);

答案 2 :(得分:0)

尝试使用此代码关闭您的应用程序及其所有活动

finish();
        Intent intent = new Intent(Intent.ACTION_MAIN); 
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
        intent.addCategory(Intent.CATEGORY_HOME); 
        startActivity(intent);

Close application and launch home screen on Android