Android关于finish()与System.exit()都不能退出应用的原因
為什么80%的碼農都做不了架構師?>>> ??
引用網上找到的一段話:
? ?That's how Android works. The user/developer is not given any way to actually exit the application. When you call 'finish', the application stack is just pushed to the background. It still exists in the memory. Android itself decides when to close the application(i.e. remove its instance from the memory) and generally this is done when your application becomes the oldest application which was not used for the longest time.
其實,這是安卓的系統機制,你會發現你的手機打開某些應用之后,即使你關了他,過一段時間,又會在后臺運行(用各大手機助手可以看到后臺運行情況),正如上面所說,他不會馬上關閉。只有等到系統資源不夠用或者其他一些原因,系統才會主動把它關掉。更多可以了解一下我的另一篇文章《關于安卓中4種啟動模式》:
http://blog.sina.com.cn/s/blog_6fd0fd4b01019fj0.html
轉載于:https://my.oschina.net/lanzp/blog/188394
總結
以上是生活随笔為你收集整理的Android关于finish()与System.exit()都不能退出应用的原因的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Nodejs 和PHP 性能测试结果
- 下一篇: Android拍照流程