美文网首页
Android Activity类finish、onDestor

Android Activity类finish、onDestor

作者: Lee_5566 | 来源:发表于2020-11-26 13:36 被阅读0次
image.png

finish函数

Activity.finish()
Call this when your activity is done and should be closed.

在你的activity动作完成的时候,或者Activity需要关闭的时候,调用此方法。

当调用此方法的时候,系统只是将最上面的Activity移出了栈,并没有及时的调用onDestory()方法,其占用的资源也没有被及时释放。因为移出了栈,所以当你点击手机上面的“back”按键的时候,也不会找到这个Activity。

onDestory函数

the system is temporarily destroying this instance of the activity to save space.

系统销毁了这个Activity的实例在内存中占据的空间。

在Activity的生命周期中,onDestory()方法是他生命的最后一步,资源空间什么的都没有。

当重新进入此Activity的时候,必须重新创建,执行onCreate()方法。

System.exit函数

exut退出整个应用程序的,是针对整个Application的。将整个进程直接kill掉。

使用时,可以写在onDestory()方法内,亦可直接在想退出的地方直接调用:

例如:

System.exit(0); 
android.os.Process.killProcess(android.os.Process.myPid());

相关文章

网友评论

      本文标题:Android Activity类finish、onDestor

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