我想杀死应用程序,但我的应用程序暂停条件。我怎么能杀死app?

时间:2016-02-03 01:19:03

标签: android

如果我按下按钮,请杀死应用程序 但我的应用暂停了条件。 我用

      public void onClick(View v){     
            moveTaskToBack(true);
            finish();
            android.os.Process.killProcess(android.os.Process.myPid());
        }
    });
}

但app暂停onResume。

当然,我怎么能杀死app?

1 个答案:

答案 0 :(得分:0)

Use this:

getActivity().finish();
System.exit(0);

Or this:

finish();