Android关于finish()与System.exit()都不能退出应用的原因
為什么80%的碼農(nóng)都做不了架構(gòu)師?>>> ??
引用網(wǎng)上找到的一段話:
? ?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.
其實,這是安卓的系統(tǒng)機制,你會發(fā)現(xiàn)你的手機打開某些應(yīng)用之后,即使你關(guān)了他,過一段時間,又會在后臺運行(用各大手機助手可以看到后臺運行情況),正如上面所說,他不會馬上關(guān)閉。只有等到系統(tǒng)資源不夠用或者其他一些原因,系統(tǒng)才會主動把它關(guān)掉。更多可以了解一下我的另一篇文章《關(guān)于安卓中4種啟動模式》:
http://blog.sina.com.cn/s/blog_6fd0fd4b01019fj0.html
轉(zhuǎn)載于:https://my.oschina.net/lanzp/blog/188394
總結(jié)
以上是生活随笔為你收集整理的Android关于finish()与System.exit()都不能退出应用的原因的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Nodejs 和PHP 性能测试结果
- 下一篇: Android拍照流程