美文网首页
Android完全退出程序

Android完全退出程序

作者: 依然爱幽默 | 来源:发表于2016-11-23 13:37 被阅读0次

    在Android开发过程中总会遇到需要完全退出应用程序的需求,试过很多个,发现这种方法最简洁:
    首先在AndroidManifest中把程序的的主界面比如MainActivity的launchMode指定为singleTask。

        android:launchMode="singleTask"
    

    然后在需要退出程序的地方用如下代码;

          @Override
            public void onBackPressed() {
                if ((System.currentTimeMillis() - exit_time) > 2000) {
                    Toast.makeText(this, "再按一次退出程序", Toast.LENGTH_SHORT).show();
                    exit_time = System.currentTimeMillis();
                    return;
                }
                Intent exitIntent = new Intent(this, MainActivity.class);
                exitIntent.putExtra("ASKFOR_EXIT", true);
                startActivity(exitIntent);
                finish();
            }
    

    最后在MainActivity中加入如下代码:

        @Override
        protected void onNewIntent(Intent intent) {
            super.onNewIntent(intent);
            if (intent != null) {
                if (intent.hasExtra("ASKFOR_EXIT")) {
                    finish();
                }
            }
        }
    

    相关文章

      网友评论

          本文标题:Android完全退出程序

          本文链接:https://www.haomeiwen.com/subject/vecvpttx.html