当前位置: 首页 > article >正文

AndroidStudio-Activity的生命周期

一、Avtivity的启动和结束

从当前页面跳到新页面,跳转代码如下:

startActivity(new Intent(源页面.this,目标页面.class));

从当前页面回到上一个页面,相当于关闭当前页面,返回代码如下:

finish();// 结束当前的活动页面

示例:

在activity_act_start.xml文件中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center">

    <Button
        android:id="@+id/btn_act_next"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="跳到下个页面"/>

</LinearLayout>

在ActStartActivity.java文件中:

package com.example.chapter02;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;

public class ActStartActivity extends AppCompatActivity implements View.OnClickListener {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_act_start);
        findViewById(R.id.btn_act_next).setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        startActivity(new Intent(this,ActFinishActivity.class));
    }
}

在activity_act_finsih.xml文件中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/iv_back"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:padding="5dp"
        android:src="@drawable/ic_back"/>

    <Button
        android:id="@+id/btn_finish"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="完成"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="按返回键,或者点击左上角的箭头图标,或者点击上面的完成按钮,均可关闭当前页面,返回上个页面"/>

</LinearLayout>

在ActFinishActivity.java文件中:

package com.example.chapter02;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;

public class ActFinishActivity extends AppCompatActivity implements View.OnClickListener{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_act_finish);
        findViewById(R.id.iv_back).setOnClickListener(this);
        findViewById(R.id.btn_finish).setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        if(v.getId() == R.id.iv_back || v.getId() == R.id.btn_finish){
            //结束当前的活动页面
            finish();
        }
    }
}

二、Activity的生命周期

示例:

package com.example.chapter02;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;

public class ActStartActivity extends AppCompatActivity implements View.OnClickListener {

    private static final String TAG = "ning";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Log.d(TAG,"ActStartActivity onCreate");
        setContentView(R.layout.activity_act_start);
        findViewById(R.id.btn_act_next).setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        startActivity(new Intent(this,ActFinishActivity.class));
    }

    @Override
    protected void onStart() {
        super.onStart();
        Log.d(TAG,"ActStartActivity onStart");
    }

    @Override
    protected void onResume() {
        super.onResume();
        Log.d(TAG,"ActStartActivity onResume");
    }

    @Override
    protected void onPause() {
        super.onPause();
        Log.d(TAG,"ActStartActivity onPause");
    }

    @Override
    protected void onStop() {
        super.onStop();
        Log.d(TAG,"ActStartActivity onStop");
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        Log.d(TAG,"ActStartActivity onDestroy");
    }

    @Override
    protected void onRestart() {
        super.onRestart();
        Log.d(TAG,"ActStartActivity onRestart");
    }
}

发布运行:

点击跳转:

发现点击跳转后onPause和onStop运行

点击返回后执行:

返回主页面后执行:

总结:

1.Activity 的生命周期:

(1)onCreate:创建活动。把页面布局加载进内存,进入了初始状态。

(2)onStart:开始活动。把活动页面显示在屏幕上,进入了就绪状态

(3)onResume:恢复活动。活动页面进入活跃状态,能够与用户正常交互,例如允许响应用户的点击动作、允许用户输入文字等等

(4)onPause:例如允许响应用户的点击动作、允许用户输入文字等等。

(5)onStop:无法与用户正常交互。

(6)onDestroy:销毁活动。回收活动占用的系统资源,把页面从内存中清

(7)onRestart:重启活动。重新加载内存中的页面数据。

(8)onNewlntent:重用已有的活动实例。

2.各状态之间的切换过程

打开新页面的方法调用顺序为:onCreate-onStart-onResume

关闭旧页面的方法调用顺序为:onPause→onStop→onDestroy


http://www.kler.cn/a/398133.html

相关文章:

  • 重置docker版本的octoprint管理员账号密码
  • 将已有的MySQL8.0单机架构变成主从复制架构
  • Linux运维常用命令
  • Mac终端字体高亮、提示插件
  • 大模型基础BERT——Transformers的双向编码器表示
  • Wxml2Canvas小程序将dom转为图片,bug总结
  • 权限系统:权限应用服务设计
  • LeetCode 18. 四数之和 Java题解
  • JVM双亲委派机制详解
  • GPT-5 要来了:抢先了解其创新突破
  • web与网络编程
  • scoop安装ffmpeg转换视频为语音文件
  • 前端Javascript、Vue、CSS等场景面试题目(二)
  • 7.2 图像复原之空间滤波
  • Docker 组添加用户,设置允许普通用户操作 docker
  • 如何用润乾发明的DQL查询语法来简化多表关联查询
  • 类和对象——拷贝构造函数,赋值运算符重载(C++)
  • Vue 3 中的原生事件监听与组件事件处理详解
  • Rust字符串类型全解析
  • 使用Element UI实现前端分页,及el-table表格跨页选择数据,切换分页保留分页数据,限制多选数量
  • 嵌入式linux系统中ADC控制与实现
  • HTTP基础
  • java中volatile 类型变量提供什么保证?能使得一个非原子操作变成原子操作吗?
  • 未来的车网互动如何重塑我们的城市生活
  • 【Linux】Linux系统性能调优技巧
  • 2024强化学习的结构化剪枝模型RL-Pruner原理及实践