Best way to quit android app?

后端 未结 4 2010
误落风尘
误落风尘 2021-01-06 05:29

I\'m looking for a way to quit my android app by code. Yes, I know, I shouldn\'t be doing this cause android handles it when you press the back button, but I have a customiz

4条回答
  •  醉话见心
    2021-01-06 06:18

    use below code.

    android.os.Process.killProcess(android.os.Process.myPid());
        System.runFinalizersOnExit(true);
    

提交回复
热议问题