Android编程中activity的完整生命周期实例详解
作者:octobershiner 发布时间:2022-12-24 05:39:40
本文实例分析了Android编程中activity的完整生命周期。分享给大家供大家参考,具体如下:
android中 activity有自己的生命周期,对这些知识的学习可以帮助我们在今后写程序的时候,更好的理解其中遇到的一些错误。这篇文章很长,希望不要耽误大家的时间~
今天不会涉及太多关于activity栈的东西,主要说activity自身的生命周期
区分几个概念
1 Activity 官方解释为 “An Activity is an application component that provides a screen with which users can interact in order to do something, such as dial the phone, take a photo, send an email, or view a map. Each activity is given a window in which to draw its user interface. ”也就是用户用来交互的每一个窗口,用户当前正在进行的一个操作。
2 back-stack 用户通过触摸程序会通过application launcher来启动一个activity A,启动的activity A会被压入栈顶,如果当前的activity A再启动一个新的activity B,那么此时A调用onStop函数,系统会维护这个activity信息.当用户按下back键的时候,back stack会进行一个pop的操作,并且调用A的onResume() 具体的进出栈细节,以后会详细介绍。
3 Tasks 当用户处于某个activi提: Activity A在名称为"TaskOne应用ty的时候,按下HOME键用户返回到launcher,此时,如果用户再触摸新的应用,则新建一个Task,一个back stack就代表一个task.不同程序的activity可以压入同一个栈中,也就是说可以组成一个task,比如你的程序启动了一个系统自带的发短信的activity,给用户的感觉就是发短信好像是你的程序中的一个功能一样。
注释:以上的行为均为系统的默认设置,有两种方式可以改变activity的行为,加入A启动B,一是在B的manifest设置中,改变行为,另一种是在Activity发起的intent中指定要启动的activity设置,其中Intent的优先级要高于manifest.xml文件,并且有些mode在并不是同时都存在于两种方式中。
android的生命周期包括 onCreate onStart onRestart onResume onPause onStop onDestroy ,activity在声明周期中会调用以上方法来执行不同状态对应的操作,下面介绍各个方法的调用时间
onCreate() 次状态下activity不可被终结
Called when the activity is first created. This is where you should do all of your normal static set up: create views, bind data to lists, etc. This method also provides you with a Bundle containing the activity's previously frozen state, if there was one.
Always followed by onStart().
//当activity第一次被创建的时候调用。你应该在这个方法里进行所有的静态创建,创建views,(通过setContnetView方法)向lists绑定数据等等。如果存在保存的状态的话,该方法也提供给你一个包含activity最近状态的一个bundle。onStart方法总是在此方法之后调用
onRestart() 次状态下activity不可被终结
Called after your activity has been stopped, prior to it being started again.
Always followed by onStart()
//在你的activity停止后被调用,在重新开始之前调用
onResume() 次状态下activity不可被终结
Called when the activity will start interacting with the user. At this point your activity is at the top of the activity stack, with user input going to it.
Always followed by onPause().
//当activity将被启动与用户交互的时候被调用。此刻你的activity处于activity栈的顶端,用于用户输入,永远///在onPause之后被调用
onPause() 次状态下activity不可被终结 ,android HoneyComb系统除外
Called when the system is about to start resuming a previous activity. This is typically used to commit unsaved changes to persistent data, stop animations and other things that may be consuming CPU, etc. Implementations of this method must be very quick because the next activity will not be resumed until this method returns.
Followed by either onResume() if the activity returns back to the front, or onStop() if it becomes invisible to the user.
//当系统即将重新开始以前的activity的时候被调用(不懂,自己的理解是:当当前activity要启动新的activity的时候被调用),典型的应用是用来将还未保存的数据提交到当前的数据,(意思就是保存数据更新),停止animations和其他可能耗费CPU的操作。对此方法的实现必须快速因为下个activity直到此方法返回才会被重新开始。
当activity从back(翻译后台不合适)转到front(与用户交互的状态)的时候,onResume方法会在onPause方法之后被调用
当activity变为不可见的时候,onStop方法会在onPause之后被调用
onStop() 次状态下activity可以被终结
Called when the activity is no longer visible to the user, because another activity has been resumed and is covering this one. This may happen either because a new activity is being started, an existing one is being brought in front of this one, or this one is being destroyed.
Followed by either onRestart() if this activity is coming back to interact with the user, or onDestroy() if this activity is going away.
//当activity对用户不再可见时被调用,因为另一个activity已经重新开始并且覆盖了当前activity(在栈中)。当有新的activity被启动,或者一个存在的activity重新回到前台状态,又或者当前的activity将被销毁。如果activity要返回前台和用户进行交互则在此方法后调用onReatart方法,如果当前activity要消亡,则onDestroy方法将在此方法后被调用
onDestroy() 次状态下activity可以被终结
The final call you receive before your activity is destroyed. This can happen either because the activity is finishing (someone called finish() on it, or because the system is temporarily destroying this instance of the activity to save space. You can distinguish between these two scenarios with the isFinishing() method.
这是当你的activity被消亡时接收到的最后一个方法。调用此方法有两种情形:一是 activity将要完成,可通过调用finish方法实现。而是系统销毁activity的实例来释放空间。可以使用isFinish方法来区别两种情形。这个方法常用在onPause方法中,来判断activity是暂停还是将终止。后面的demo将会演示这个功能。
下图是官网的一个生命周期的演示
好了 看一下我写的一个演示的例子吧,
MainFest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uni.activity"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="7" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ActivityDemoActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Activity01"
android:label="@string/app_name">
</activity>
</application>
</manifest>
布局文件 main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<Button
android:id="@+id/Button_A"
android:text="GO to activity 2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
activity01.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<Button
android:id="@+id/Button_A"
android:text="GO to activity 2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
String.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, ActivityDemoActivity!</string>
<string name="app_name">ActivityDemo</string>
<string name="activity01">this is activity 01</string>
</resources>
ActivityDemoActivity.java
/*
* @author octobershiner
* 2011 07 29
* SE.HIT
* 演示完整的activity的声明周期,以及isFinish方法的调用
* 此activity为程序入口activity
* */
package uni.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class ActivityDemoActivity extends Activity {
/** Called when the activity is first created. */
private static final String TAG = "demo";
private Button button_A;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button_A = (Button)this.findViewById(R.id.Button_A);
button_A.setOnClickListener(new myButtonListener());
}
private class myButtonListener implements OnClickListener{
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent();
intent.setClass(ActivityDemoActivity.this, Activity01.class);
ActivityDemoActivity.this.startActivity(intent);
//感兴趣的朋友可以取消下面的代码注释,来测试finish方法的使用,会发现第一个activity会被强制终止
//ActivityDemoActivity.this.finish();
}
};
protected void onStart(){
super.onStart();
Log.i(TAG, "The activityDemo state---->onStart");
}
protected void onRestart(){
super.onRestart();
Log.i(TAG, "The activityDemo state---->onReatart");
}
protected void onResume(){
super.onResume();
Log.i(TAG, "The activityDemo state---->onResume");
}
protected void onPause(){
super.onPause();
//调用isFinishing方法,判断activity是否要销毁
Log.i(TAG, "The activityDemo state---->onPause");
if(isFinishing()){
Log.w(TAG, "The activityDemo will be destroyed!");
}else{
Log.w(TAG, "The activityDemo is just pausing!");
}
}
protected void onStop(){
super.onStop();
Log.i(TAG, "The activityDemo state---->onStop");
}
protected void onDestroy(){
super.onDestroy();
Log.i(TAG, "The activityDemo state---->onDestroy");
}
}
Activity01.java
/*
* @author octobershiner
* 2011 07 29
* SE.HIT
* 演示完整的activity的声明周期,以及isFinish方法的调用
* 此activity可由ActivityDemoActivity启动
* */
package uni.activity;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
public class Activity01 extends Activity{
private static final String TAG = "demo";
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity01);
Log.d(TAG, "The activity01 state---->onStart");
}
protected void onStart(){
super.onStart();
Log.d(TAG, "The activity01 state---->onStart");
}
protected void onRestart(){
super.onRestart();
Log.d(TAG, "The activity01 state---->onReatart");
}
protected void onResume(){
super.onResume();
Log.d(TAG, "The activity01 state---->onResume");
}
protected void onPause(){
super.onPause();
Log.d(TAG, "The activity01 state---->onPause");
//调用isFinishing方法,判断activity是否要销毁
if(isFinishing()){
Log.w(TAG, "The activity01 will be destroyed!");
}else{
Log.w(TAG, "The activity01 is just pausing!");
}
}
protected void onStop(){
super.onStop();
Log.d(TAG, "The activity01 state---->onStop");
}
protected void onDestroy(){
super.onDestroy();
Log.d(TAG, "The activity01 state---->onDestroy");
}
}
下面是演示的结果,
操作过程是:启动ActivityDemoActivity
然后单击按钮进入Activity01
(可见activity先暂停并且不会被释放,实际是个新activity压栈过程,然后新的activity开始,应该是onCreate然后onStart,我打印语句写错了,细心朋友应该看到了,当旧的activity不可见时,调用其onStop方法)
再按返回键回到ActivityDemoActivity
(返回后,处于栈顶的activity01会执行弹栈操作,显示将会被destroy)
再按返回键 回到桌面
其实并不复杂的东邪写的有些长了,但是基本上的显示了activity的完整的生命周期。
希望本文所述对大家Android程序设计有所帮助。


猜你喜欢
- 现实开发中,我们难免遇到跨域问题,以前笔者只知道jsonp这种解决方式,后面听说spring只要加入@CrossOrigin即可解决跨域问题
- 本文实例为大家分享了WPF实现轮播图切换效果的具体代码,供大家参考,具体内容如下实现效果如下:步骤:1、自定义控件MyImageContro
- 线程中run()和start()的区别:对于Thread对象来说,当你调用的是start(),线程会被放到等待队列,等待CPU调度,不一定马
- 一、项目结构二、pom.xml<?xml version="1.0" encoding="UTF-8&q
- 一、Has方法与With方法如:A类必须包含B类一个不为null的实例,而B类可选择时候包含A类一个实例。A.HasRequired(a =
- 1、分布式锁简介分布式锁是控制分布式系统不同进程共同访问共享资源的一种锁的实现。如果不同的系统或同一个系统的不同主机之间共享了某个临界资源,
- 前言本文的多租户是基于多数据库进行实现的,数据是通过不同数据库进行隔离。下面话不多说,来看看详细的介绍:MyCat 基本配置首先针对多租户配
- 本文最终结果大概是这样的,使用java技术随机生成10个数,然后填充一个数组并在消息框中显示数组内容,接着对数组求和输出,将结果显示在消息框
- 前言:在新增的Concurrent包中,BlockingQueue很好的解决了多线程中,如何高效安全“传输”数据的问题。通过这些高效并且线程
- 本文实例为大家分享了Android自定义View实现公交成轨迹图的具体代码,供大家参考,具体内容如下总体分析下:水平方向recyclewvi
- 前言消息队列中间件是分布式系统中重要的组件,主要解决应用耦合、异步消息、流量削锋等问题,实现高性能、高可用、可伸缩和最终一致性架构,是大型分
- 1、首先创建一个按钮<Buttonandroid:id="@+id/click"android:layout_wi
- 本文实例为大家分享了Android仿微信二维码和条形码的具体代码,供大家参考,具体内容如下package your.QRCode.names
- protobuf对象不能直接使用jsonlib去转,因为protobuf生成的对象的get方法返回的类型有byte[],而只有String类
- 本文实例为大家分享了Android实现View滑动效果的具体代码,供大家参考,具体内容如下一、View的滑动简介View的滑动是Androi
- Spring SecuritySpring Security是能够为J2EE项目提供综合性的安全访问控制解决方案的安全框架。它依赖于Serv
- Java 17 更新了,作为一个 10 年的 Java 程序员,还是有亿点点兴奋的,Kotlin 的群里面也是各种讨论 Java 的新特性。
- 项目描述: springboot+springcloud+zookeeper+eureka+maven;为多模块多module的分布式架构;
- 集成配置步骤步骤1:加入 Maven 相关依赖<!-- 指定 Springboot 版本 --><parent> &
- 说明:.NET Compact Framework 中不支持异步委托调用,也就是 BeginInvoke 和 EndInvoke 方法。Be