美文网首页小码农养成记
Android 中的 Activity

Android 中的 Activity

作者: F_wind | 来源:发表于2021-10-18 08:08 被阅读0次

    android |activity|status|life

    生命周期

    过程:1 -> 6 从无到有再到无

    1. onCreate:创建;
    2. onStart:展示,但不可交互;
    3. onResume:展示并且可以交互了;
    4. onPause:暂停(被透明层遮盖或者 Dialog 遮盖),视图可见但不可以交互;
    5. onStop:进入后台,不可见(如果再次回来,会先onRestart,然后 onStart);
    6. onDestory:销毁;

    各种状态

    1. processing:运行时;
    2. paused:被遮盖;
    3. stopped:后台运行;
    4. killed:销毁。

    相关文章

      网友评论

        本文标题:Android 中的 Activity

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