Activity生命周期

Author Avatar
Euan 10月 26, 2019
  • 在其它设备中阅读本文章

Activity生命周期

实验目的

1.了解Android应用的生命周期与进程优先级的切换。
2.理解Activity的生命周期与状态切换。
3.掌握Activity在启动、停止和销毁等不同阶段,9种重载函数的调用顺序,
4.掌握Android调试工具LogCat的使用方法。

实验内容

1.在Activity中重载下图中9种事件函数,在调用不同函数时使用LogCat在Eclipse的控制台中输出调用日志。

K5MFsJ.png

实验步骤

1.创建名为“ActivityLifeCycle”的Android应用程序,按下图设置”Activity Name”和”Layout Name”:

K5M9RU.png

2.修改默认的“Hello World! ”为“Hello World,ActivityLifeCycleActivity!”

3.在界面上添加一个按钮,并命名为”btn_finish”,并将其文本修改为“ ”

K5MCzF.png

K5MEZR.png

K5MiM4.png
4.在ActivityLifeCycleActivity.java类中添加一行
private static String TAG = “LIFECYCLE”;

5.修改“ActivityLifeCycleActivity.java”文件,在onCreate函数中添加如下代码:

Log.i(TAG, “(1) onCreate()”);

Button button = (Button)findViewById(R.id.btn_finish);

button.setOnClickListener(new View.OnClickListener() {
  public void onClick(View view) {
  finish();
  }
});

6.选择菜单Source->Override/Implement Menthods,在打开的对话框中勾选onRestoreInstanceState、onStart、onRestart、onResume、onSaveInstanceState、onPause、onStop、onDestroy等8个方法,单击”OK”,系统会自动生成这些方法的重载代码。

K5MkL9.png

K5MZIx.png

7.在这些方法里分别添加语句,用于调试。比如,在OnStart方法中添加
Log.i(TAG, “(2) onStart()”);
在Logcat里添加一个过滤器,如下图

K5MVd1.png

8.在模拟器里运行程序,通过按下返回键、home键,切换应用等方式测试在全生命周期、可视生命周期中Activity各事件的发生顺序。观察Logcat中日志的变化并做好记录。
思考题:
1.除了使用Logcat,还有那些调试应用程序的工具和方法?试简述之。
android 默认使用Logcat调试应用程序工具,通过输出Log信息来查找或定位程序的错误;
其他的调试应用程序工具
记录栈跟踪日志
使用Log.d(String,String,Throwable)来快熟查看关键位置的结果,是否正确。
设置断点
利用程序调试器,一步一步跟踪代码执行。
Android Lint
android代码静态分析器,在平常书写代码的时候他就会一直在后台默默的运行,找到代码中语法或者一些版本的错误而无需运行代码。若果需要检查整个project的代码,那么可以在analyze->inspect codet运行Lint,选择范围,运行检查。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.example.thinkpad.activitylifecycle;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.util.Log;

public class ActivityLifeCycleActivity extends AppCompatActivity {
private static String TAG = "LIFECYCLE";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Log.i(TAG, "(1) onCreate()");
Button button = (Button)findViewById(R.id.btn_finish);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
finish();
}
});
}
@Override
public void onStart()
{
super.onStart();
// 输出日志
Log.d(TAG, "-------onStart------");
}
@Override
public void onRestart()
{
super.onRestart();
// 输出日志
Log.d(TAG, "-------onRestart------");
}
@Override
public void onResume()
{
super.onResume();
// 输出日志
Log.d(TAG, "-------onResume------");
}
@Override
public void onPause()
{
super.onPause();
// 输出日志
Log.d(TAG, "-------onPause------");
}
@Override
public void onStop()
{
super.onStop();
// 输出日志
Log.d(TAG, "-------onStop------");
}
@Override
public void onDestroy()
{
super.onDestroy();
// 输出日志
Log.d(TAG, "-------onDestroy------");
}
}
layout
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ActivityLifeCycleActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World,ActivityLifeCycleActivity!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0" />

<Button
android:id="@+id/btn_finish"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="结束程序"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="37dp" />
</android.support.constraint.ConstraintLayout>

K5Mmi6.png

运行后出现onStart,onResume,onPause结束出现onStop,onDestroy

本文使用 CC BY-NC-SA 3.0 中国大陆 协议许可
具体请参见 知识共享协议

本文链接:https://zyhang8.github.io/2019/10/26/android-exp4/