两分钟彻底让你明白Android Activity生命周期(图文)!

转:http://blog.csdn.net/qyf_5445/article/details/8290232

首先看一下Android api中所提供的Activity生命周期图(不明白的,可以看完整篇文章,在回头看一下这个图,你会明白的):

Activity其实是继承了ApplicationContext这个类,我们可以重写以下方法,如下代码:

[java] view plaincopyprint?
  1. public class Activity extends ApplicationContext { 
  2.         protected void onCreate(Bundle savedInstanceState);         
  3.         protected void onStart();            
  4.         protected void onRestart();         
  5.         protected void onResume();        
  6.         protected void onPause();         
  7.         protected void onStop();         
  8.         protected void onDestroy(); 
 public class Activity extends ApplicationContext {protected void onCreate(Bundle savedInstanceState);        protected void onStart();           protected void onRestart();        protected void onResume();       protected void onPause();        protected void onStop();        protected void onDestroy();
}


为了便于大家更好的理解,我简单的写了一个Demo,不明白Activity周期的朋友们,可以亲手实践一下,大家按照我的步骤来。

第一步:新建一个Android工程,我这里命名为ActivityDemo.

第二步:修改ActivityDemo.java(我这里重新写了以上的七种方法,主要用Log打印),代码如下:

[java] view plaincopyprint?
  1. package com.tutor.activitydemo; 
  2. import android.app.Activity; 
  3. import android.os.Bundle; 
  4. import android.util.Log; 
  5. public class ActivityDemo extends Activity { 
  6.     
  7.     private static final String TAG = "ActivityDemo"
  8.      
  9.     public void onCreate(Bundle savedInstanceState) { 
  10.         super.onCreate(savedInstanceState); 
  11.         setContentView(R.layout.main); 
  12.          
  13.         Log.e(TAG, "start onCreate~~~"); 
  14.     } 
  15.      
  16.     @Override 
  17.     protected void onStart() { 
  18.         super.onStart(); 
  19.         Log.e(TAG, "start onStart~~~"); 
  20.     } 
  21.      
  22.     @Override 
  23.     protected void onRestart() { 
  24.         super.onRestart(); 
  25.         Log.e(TAG, "start onRestart~~~"); 
  26.     } 
  27.      
  28.     @Override 
  29.     protected void onResume() { 
  30.         super.onResume(); 
  31.         Log.e(TAG, "start onResume~~~"); 
  32.     } 
  33.      
  34.     @Override 
  35.     protected void onPause() { 
  36.         super.onPause(); 
  37.         Log.e(TAG, "start onPause~~~"); 
  38.     } 
  39.      
  40.     @Override 
  41.     protected void onStop() { 
  42.         super.onStop(); 
  43.         Log.e(TAG, "start onStop~~~"); 
  44.     } 
  45.      
  46.     @Override 
  47.     protected void onDestroy() { 
  48.         super.onDestroy(); 
  49.         Log.e(TAG, "start onDestroy~~~"); 
  50.     } 
  51.      
package com.tutor.activitydemo;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
public class ActivityDemo extends Activity {private static final String TAG = "ActivityDemo";public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);Log.e(TAG, "start onCreate~~~");}@Overrideprotected void onStart() {super.onStart();Log.e(TAG, "start onStart~~~");}@Overrideprotected void onRestart() {super.onRestart();Log.e(TAG, "start onRestart~~~");}@Overrideprotected void onResume() {super.onResume();Log.e(TAG, "start onResume~~~");}@Overrideprotected void onPause() {super.onPause();Log.e(TAG, "start onPause~~~");}@Overrideprotected void onStop() {super.onStop();Log.e(TAG, "start onStop~~~");}@Overrideprotected void onDestroy() {super.onDestroy();Log.e(TAG, "start onDestroy~~~");}}




第三步:运行上述工程,效果图如下(没什么特别的):

核心在Logcat视窗里,如果你还不会用Logcat你可以看一下我的这篇文章 Log图文详解(Log.v,Log.d,Log.i,Log.w,Log.e) ,我们打开应用时先后执行了onCreate()->onStart()->onResume三个方法,看一下LogCat视窗如下:

BACK键:

当我们按BACK键时,我们这个应用程序将结束,这时候我们将先后调用onPause()->onStop()->onDestory()三个方法,如下图所示:

HOME键:

当我们打开应用程序时,比如浏览器,我正在浏览NBA新闻,看到一半时,我突然想听歌,这时候我们会选择按HOME键,然后去打开音乐应用程序,而 当我们按HOME的时候,Activity先后执行了onPause()->onStop()这两个方法,这时候应用程序并没有销毁。如下图所示:

而当我们再次启动ActivityDemo应用程序时,则先后分别执行了onRestart()->onStart()->onResume()三个方法,如下图所示:

这里我们会引出一个问题,当我们按HOME键,然后再进入ActivityDemo应用时,我们的应用的状态应该是和按HOME键之前的状态是一样的,同样为了方便理解,在这里我将ActivityDemo的代码作一些修改,就是增加一个EditText。

第四步:修改main.xml布局文件(增加了一个EditText),代码如下:


[java] view plaincopyprint?
  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  3.     android:orientation="vertical" 
  4.     android:layout_width="fill_parent" 
  5.     android:layout_height="fill_parent" 
  6.     > 
  7. <TextView   
  8.     android:layout_width="fill_parent"  
  9.     android:layout_height="wrap_content"  
  10.     android:text="@string/hello" 
  11.     /> 
  12. <EditText 
  13.     android:id="@+id/editText" 
  14.     android:layout_width="fill_parent" 
  15.     android:layout_height="wrap_content" 
  16. /> 
  17. </LinearLayout> 
<?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"/>
<EditTextandroid:id="@+id/editText"android:layout_width="fill_parent"android:layout_height="wrap_content"
/>
</LinearLayout>


第五步:然后其他不变,运行ActivityDemo程序,在EditText里输入如"Frankie"字符串(如下图:)

这时候,大家可以按一下HOME键,然后再次启动ActivityDemo应用程序,这时候EditText里并没有我们输入的"Frankie"字样,如下图:

这显然不能称得一个合格的应用程序,所以我们需要在Activity几个方法里自己实现,如下第六步所示:

第六步修改ActivityDemo.java代码如下:


[java] view plaincopyprint?
  1. package com.tutor.activitydemo; 
  2. import android.app.Activity; 
  3. import android.os.Bundle; 
  4. import android.util.Log; 
  5. import android.widget.EditText; 
  6. public class ActivityDemo extends Activity { 
  7.     
  8.     private static final String TAG = "ActivityDemo"
  9.     private EditText mEditText; 
  10.     //定义一个String 类型用来存取我们EditText输入的值 
  11.     private String mString; 
  12.     public void onCreate(Bundle savedInstanceState) { 
  13.         super.onCreate(savedInstanceState); 
  14.         setContentView(R.layout.main); 
  15.         mEditText = (EditText)findViewById(R.id.editText); 
  16.         Log.e(TAG, "start onCreate~~~"); 
  17.     } 
  18.      
  19.     @Override 
  20.     protected void onStart() { 
  21.         super.onStart(); 
  22.         Log.e(TAG, "start onStart~~~"); 
  23.     } 
  24.     //当按HOME键时,然后再次启动应用时,我们要恢复先前状态 
  25.     @Override 
  26.     protected void onRestart() { 
  27.         super.onRestart(); 
  28.         mEditText.setText(mString); 
  29.         Log.e(TAG, "start onRestart~~~"); 
  30.     } 
  31.      
  32.     @Override 
  33.     protected void onResume() { 
  34.         super.onResume(); 
  35.         Log.e(TAG, "start onResume~~~"); 
  36.     } 
  37.      
  38.     //当我们按HOME键时,我在onPause方法里,将输入的值赋给mString 
  39.     @Override 
  40.     protected void onPause() { 
  41.         super.onPause(); 
  42.         mString = mEditText.getText().toString(); 
  43.         Log.e(TAG, "start onPause~~~"); 
  44.     } 
  45.      
  46.     @Override 
  47.     protected void onStop() { 
  48.         super.onStop(); 
  49.         Log.e(TAG, "start onStop~~~"); 
  50.     } 
  51.      
  52.     @Override 
  53.     protected void onDestroy() { 
  54.         super.onDestroy(); 
  55.         Log.e(TAG, "start onDestroy~~~"); 
  56.     } 
  57.      
package com.tutor.activitydemo;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.EditText;
public class ActivityDemo extends Activity {private static final String TAG = "ActivityDemo";private EditText mEditText;//定义一个String 类型用来存取我们EditText输入的值private String mString;public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);mEditText = (EditText)findViewById(R.id.editText);Log.e(TAG, "start onCreate~~~");}@Overrideprotected void onStart() {super.onStart();Log.e(TAG, "start onStart~~~");}//当按HOME键时,然后再次启动应用时,我们要恢复先前状态@Overrideprotected void onRestart() {super.onRestart();mEditText.setText(mString);Log.e(TAG, "start onRestart~~~");}@Overrideprotected void onResume() {super.onResume();Log.e(TAG, "start onResume~~~");}//当我们按HOME键时,我在onPause方法里,将输入的值赋给mString@Overrideprotected void onPause() {super.onPause();mString = mEditText.getText().toString();Log.e(TAG, "start onPause~~~");}@Overrideprotected void onStop() {super.onStop();Log.e(TAG, "start onStop~~~");}@Overrideprotected void onDestroy() {super.onDestroy();Log.e(TAG, "start onDestroy~~~");}}


第七步:重新运行ActivityDemo程序,重复第五步操作,当我们按HOME键时,再次启动应用程序时,EditText里有上次输入的"Frankie"字样,如下图如示:

OK,大功基本告成,这时候大家可以在回上面看一下Activity生命周期图,我想大家应该完全了解了Activity的生命周期了,不知道你了解了没?

 

转载于:https://www.cnblogs.com/jackljf/archive/2012/12/21/3588983.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/576144.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

spring4和spring5的aop执行顺序区别?

spring4单切面 spring4多切面 spring4 spring5

jquery datepicker 点击日期控件不会自动更新input的值

页面代码&#xff1a;<link href"http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" rel"stylesheet" type"text/css"/> <link href"/static/css/main.css" rel"stylesheet" type"text/css"/…

一个b+树库存放多少索引记录

MySQL中InnoDB页的大小默认是16k。也可以自己进行设置。&#xff08;计算机在存储数据的时候&#xff0c;最小存储单元是扇区&#xff0c;一个扇区的大小是 512 字节&#xff0c;而文件系统&#xff08;例如 XFS/EXT4&#xff09;最小单元是块&#xff0c;一个块的大小是 4KB。…

检索函数retrieve

转载于:https://www.cnblogs.com/flowjacky/archive/2012/12/28/2836729.html

BootCDN——React入门学习

首先下载:react依赖&#xff1a;react.js、react-dom.js、babel.js 这种方式容易出错&#xff0c;所以不使用这个 使用下面方式正真的用法;Babel 中文网 Babel - 下一代 JavaScript 语法的编译器

redis事务命令复习

命令复习&#xff1a; multi&#xff1a;开启事务 开启事务之后&#xff0c;讲要操作的命令都放到了QUEUED&#xff08;queued&#xff09;队列里&#xff0c;然后通过EXEC命令一起提交。 对于WATCH命令&#xff1a; 开启了事务&#xff0c;没有提交&#xff0c;这时候又有一…

STM32示波器 信号发生器

关于stm32的示波器&#xff0c;网上以经有很多了。这里还是想把自己的设计思想发表出来。这个项目已经准备了很久。这里首先要感谢以前的团队&#xff0c;非常感觉陈师和覃总两位经验丰富的嵌入式工程师&#xff0c;获得了不少多方面的考虑。如果不是工作调整等原因&#xff0c…

FlashPaper安装及使用方法

FlashPaper安装及使用方法 一、FlashPaper的安装 第一步&#xff1a;下载FlashPaper2.2安装包 点击下面链接下载FlashPaper2.2 FlashPaper2.2下载 第二步&#xff1a;安装FlashPaper2.2 将zip压缩包解压至磁盘的某一文件夹中&#xff0c;注意&#xff0c;此版本FlashPaper为了能…

redis的lua脚本解决原子操作

使用一个简单的工具类 代码示例&#xff1a;

redis集群异步复制造成锁丢失(分布式锁)

在redisConfig配置类注入bean Configuration public class RedisConfig {Beanpublic RedisTemplate<String,Object> redisTemplate(RedisConnectionFactory factory){RedisTemplate<String, Object> template new RedisTemplate<String, Object>();templat…

redis内存默认值调整

redis一般设置物理内存的3/4 redis.conf配置文件修改maxmemory这个值来调整redis的内存大小 info memory命令可用查看redis内存使用情况 info可用查询redis下的各种命令

mysql支持的存储引擎

SHOW ENGINES; 默认支持innodb&#xff0c;其他存储引擎都不支持事务 innodb存储引擎的架构&#xff1a;

滤镜混合应用

混合滤镜使用&#xff1a;创建一个滤镜对象&#xff1b; 创建一个数组&#xff0c;并将滤镜的对象添加到该数组当中&#xff1b; 利用影片剪辑的filters属性&#xff0c;将数组当中的效果赋予该影片剪辑即可12345678import flash.display.Bitmap; import flash.display.…

Java Swing 树状组件JTree的使用方法【图】

树中特定的节点可以由 TreePath&#xff08;封装节点及其所有祖先的对象&#xff09;标识&#xff0c;或由其显示行&#xff08;其中显示区域中的每一行都显示一个节点&#xff09;标识。展开 节点是一个非叶节点&#xff08;由返回 false 的 TreeModel.isLeaf(node) 标识&…

实测java 与php运行速度比较

java如下 public class aa{ public static void main(String[] args){ System.out.println(System.currentTimeMillis()"----"); int a0; int i; for(i0;i<10000000;i){ a; } System.out.println(System.currentTimeMillis()); } } php如下 <? echo microtime…

HA双机热备配置

HA&#xff08;高可用性集群&#xff09;当主机处于工作状态时&#xff0c;从机处于休眠状态&#xff0c;当主机宕机时&#xff0c;从机便会开始工作&#xff0c;让用户几乎感觉不到服务的中断&#xff0c;类似于网络路由配置中的备份。当主机存活时&#xff0c;所有的资源全在…

我的服装DRP之开发感悟

先向各位拜个晚年。 今年过年期间都在想DRP的事&#xff0c;很多朋友也联系我&#xff0c;讨论技术问题的、谋求合作的、分析行业前景的、让我提供源码和数据库的都有。再次谢谢朋友们的关心。目前来说&#xff0c;在修改系统bug的同时&#xff0c;我打算重新找一份工作&#x…

iOS开发那些事-iOS常用设计模式–委托模式案例实现

书接上回&#xff0c;应用案例 我们以UITextFieldDelegate为例来说明一下委托的使用。 UITextFieldDelegate是控件UITextField的 委托&#xff0c;控件的委托主要负责响应控件事件或控制其他对象。除了UITextField&#xff0c;WebView、UITableView等控件也有相应的委托对象。 …