Android开发3.1:Activity详细介绍

来源:互联网 发布:淘宝怎么复制淘口令 编辑:程序博客网 时间:2024/04/30 06:33

详细了解Activity生命周期,根据观察Logcat理解执行过程状态

  版本:Android4.3 API18  整理测试笔记:liuxinming 

  创建Android Project

  

什么是Activity?

Android四大组件之一
Activity是Android程序的表现层,程序的每一个显示屏幕就是一个Activity

Activity类的继承关系


相关概述

一个程序一般由多个Activity组成,各activities之间关系很松散,它们之间没有直接的关联。必须有一个activity被指定为主activity,它是程序启动时首先显示的界面。每个activity都可以随意启动其它的activity。每当一个activity被启动,则前一个activity就被停止。一个程序中的所有启动的activity都被放在一个栈中,所以被停止的activity并没有销毁,而在存于棧中。新启动的activity先被存放于栈中,然后获得输入焦点。在当前活动的activity上点返回键,它被从棧中取出,然后销毁,然后上一个activity被恢复。

    当一个activity因为新的activity启动而被停止时,它会收到状态变化的通知,这样的变化有多个,每个都会引起系统调用一个相应的回调方法以通知activity,这些回调方法被统称为“生命周期回调方法”。这些回调方法分别在Activity被创建、停止、恢复、销毁时被调用。

如何创建Activity

1、从类activity继承
2、实现”生命周期回调方法“

两个最重要的方法

1、onCreate()
       这个是必须实现的函数,在其中做初始化工作。(注:必须在此函数中调用setContentView()函数设置Activity的界面)
2、onPause()
      这个虽然很重要,但不是必须实现的。此函数在用户离开Activity时被调用(这一般并不表示Activity要被销毁了)。在这个函数中,你一般需要提交那些需要保存状态的数据--因为用户可能不再返回这个Activity了。

其他方法(视情况实现)

3、onStart() 
      当Activity对用户可见的时候被调用。
4、onResume()  
       当Activity开始和用户交互的时候被调用。
5、onStop() 
      当Activity不在对用户可见的时候被调用。
6、onDestroy() 
      当被销毁的时候调用

看案例代码

[java] view plaincopy
  1. package com.example.catlog;  
  2.   
  3. import android.os.Bundle;  
  4. import android.app.Activity;  
  5. import android.util.Log;  
  6. import android.view.Menu;  
  7.   
  8. public class MainActivity extends Activity {  
  9.     private String tag = "MainActivity";  
  10.     @Override  
  11.     protected void onCreate(Bundle savedInstanceState) {  
  12.         super.onCreate(savedInstanceState);  
  13.         setContentView(R.layout.activity_main);  
  14.          Log.d(tag, "In the onStart() event");    
  15.     }  
  16.     @Override    
  17.     public void onStart() {      
  18.         super.onStart();      
  19.         Log.d(tag, "In the onStart() event");      
  20.     }      
  21.         
  22.     public void onRestart() {      
  23.         super.onRestart();      
  24.         Log.d(tag, "In the onRestart() event");      
  25.     }      
  26.       
  27.     public void onResume() {      
  28.         super.onResume();      
  29.         Log.d(tag, "In the onResume() event");      
  30.     }      
  31.       
  32.     public void onPause() {      
  33.         super.onPause();      
  34.         Log.d(tag, "In the onPause() event");      
  35.     }      
  36.       
  37.     public void onStop() {      
  38.         super.onStop();      
  39.         Log.d(tag, "In the onStop() event");      
  40.     }      
  41.       
  42.     public void onDestroy() {      
  43.         super.onDestroy();      
  44.         Log.d(tag, "In the onDestroy() event");      
  45.     }      
  46.     @Override  
  47.     public boolean onCreateOptionsMenu(Menu menu) {  
  48.         // Inflate the menu; this adds items to the action bar if it is present.  
  49.         getMenuInflater().inflate(R.menu.main, menu);  
  50.         return true;  
  51.     }  
  52.   
  53. }  

观察Logcat



① 启动Hello Word项目 ,我们可以看到如上图 Logcat 日志
    首先onCreate()创建一个页面布局
    其次onStart()对用户可见时调用
            onResume()当和用户交互时调用



② 当没有动作时,虚拟机界面变黑,调用如下函数
     onPause()  在用户离开时被调用,但并不表示要被销毁【暂停】
     onStop() 当Activity不在被用户可见时调用 【停止】



③ 当滑动打开界面时,调用日志如下
     onRestart() 重新把Activity加载进来,呈现给用户。
     onStart() 对用户可见时调用
     onResume() 当和用户交互时调用
    ============================下面动作是继续执行暂停,停止,注意:::多了一个销毁(因为这次我把程序关闭了)
    onDestroy() 当销毁 Activity时调用



结语

Android系统把ActivityLife这个Activity先杀死(具体顺序是先暂停、后关闭再销毁),然后再启动(具体顺序是先创建,后启动再恢复)。通过这个例子我们也清楚的看到了,是Android系统而不是程序员在控制Activity的生命周期。

生命周期

    

关于更详细,更多API以及类介绍参考API手册:
http://android.toolib.net/reference/android/app/Activity.html
http://www.zhihu.com/collection/25873857
http://www.zhihu.com/collection/25873973
http://www.zhihu.com/collection/25874894
http://www.zhihu.com/collection/25875057
http://www.zhihu.com/collection/25875292
http://www.zhihu.com/collection/25875441
http://www.zhihu.com/collection/25875724
http://www.zhihu.com/collection/25876004
http://www.zhihu.com/collection/25876195
http://www.zhihu.com/collection/25876399
http://www.zhihu.com/collection/25876800
http://www.zhihu.com/collection/25876958
http://www.zhihu.com/collection/25877184
http://www.zhihu.com/collection/25877589
http://www.zhihu.com/collection/25877672
http://www.zhihu.com/collection/25878094
http://www.zhihu.com/collection/25878835
http://www.zhihu.com/collection/25879155
http://www.zhihu.com/collection/25879518
http://www.zhihu.com/collection/25879828
http://www.zhihu.com/collection/25882215
http://www.zhihu.com/collection/25882427
http://www.zhihu.com/collection/25882792
http://www.zhihu.com/collection/25883083
http://www.zhihu.com/collection/25883285
http://www.zhihu.com/collection/25890851
http://www.zhihu.com/collection/25890925
http://www.zhihu.com/collection/25891014
http://www.zhihu.com/collection/25891089
http://www.zhihu.com/collection/25891157
http://www.zhihu.com/collection/25893431
http://www.zhihu.com/collection/25893548
http://www.zhihu.com/collection/25893627
http://www.zhihu.com/collection/25893736
http://www.zhihu.com/collection/25893766
http://www.zhihu.com/collection/25893803
http://www.zhihu.com/collection/25893887
http://www.zhihu.com/collection/25893927
http://www.zhihu.com/collection/25893951
http://www.zhihu.com/collection/25894031
http://www.zhihu.com/collection/25894098
http://www.zhihu.com/collection/25894130
http://www.zhihu.com/collection/25894229
http://www.zhihu.com/collection/25894335
http://www.zhihu.com/collection/25894487
http://www.zhihu.com/collection/25952664
http://www.zhihu.com/collection/25952927
http://www.zhihu.com/collection/25953157
http://www.zhihu.com/collection/25953294
http://www.zhihu.com/collection/25953594
http://www.zhihu.com/collection/25953832
http://www.zhihu.com/collection/25954116
http://www.zhihu.com/collection/25954402
http://www.zhihu.com/collection/25954354
http://www.zhihu.com/collection/25954612
http://www.zhihu.com/collection/25954672
http://www.zhihu.com/collection/25954904
http://www.zhihu.com/collection/25954729
http://www.zhihu.com/collection/25954889
http://www.zhihu.com/collection/25954959
http://www.zhihu.com/collection/25955219
http://www.zhihu.com/collection/25955469
http://www.zhihu.com/collection/25955307
http://www.zhihu.com/collection/25955528
http://www.zhihu.com/collection/25955707
http://www.zhihu.com/collection/25955781
http://www.zhihu.com/collection/25955993
http://www.zhihu.com/collection/25957047
http://www.zhihu.com/collection/25957087
http://www.zhihu.com/collection/25956572
http://www.zhihu.com/collection/25956238
http://www.zhihu.com/collection/25956794
http://www.zhihu.com/collection/25957995
http://www.zhihu.com/collection/25958231
http://www.zhihu.com/collection/25958197
http://www.zhihu.com/collection/25958484
http://www.zhihu.com/collection/25958267
http://www.zhihu.com/collection/25958534
http://www.zhihu.com/collection/25958531
http://www.zhihu.com/collection/25958784
http://www.zhihu.com/collection/25959296
http://www.zhihu.com/collection/25959529
http://www.zhihu.com/collection/25959730
http://www.zhihu.com/collection/25961124
http://www.zhihu.com/collection/25961313
http://www.zhihu.com/collection/25961372
http://www.zhihu.com/collection/25961621
http://www.zhihu.com/collection/25961817
http://www.zhihu.com/collection/25961910
http://www.zhihu.com/collection/25962050
http://www.zhihu.com/collection/25962228
http://www.zhihu.com/collection/25962740
http://www.zhihu.com/collection/25962921
http://www.zhihu.com/collection/25962905
http://www.zhihu.com/collection/25962988
http://500px.com/photo/45156486
http://500px.com/photo/45156624
http://500px.com/photo/45156692
http://500px.com/photo/45156746
http://500px.com/photo/45157808
http://500px.com/photo/45157862
http://500px.com/photo/45157892
http://500px.com/photo/45158216
http://500px.com/photo/45158224
http://500px.com/photo/45158358
http://500px.com/photo/45158390
http://500px.com/photo/45158978
http://500px.com/photo/45159382
http://500px.com/photo/45159406
http://500px.com/photo/45159538
http://500px.com/photo/45040488
http://500px.com/photo/45040620
http://500px.com/photo/45134550
http://500px.com/photo/45134644
http://500px.com/photo/45134700
http://500px.com/photo/45134856
http://500px.com/photo/45134926
http://500px.com/photo/45135300
http://500px.com/photo/45135400
http://500px.com/photo/45135450
http://500px.com/photo/45135464
http://500px.com/photo/45135500
http://500px.com/photo/45135536
http://500px.com/photo/45135550
http://500px.com/photo/45135754
http://event.weibo.com/1526676
http://event.weibo.com/1527664
http://event.weibo.com/1527946
http://event.weibo.com/1528134
http://event.weibo.com/1528288
http://event.weibo.com/1528536
http://event.weibo.com/1529284
http://event.weibo.com/1529350
http://event.weibo.com/1529440
http://event.weibo.com/1529584
http://event.weibo.com/1529620
http://event.weibo.com/1529680
http://event.weibo.com/1530468
http://event.weibo.com/1530496
http://event.weibo.com/1530510
http://event.weibo.com/1530602
http://event.weibo.com/1530636
http://event.weibo.com/1530694
http://event.weibo.com/1530714
http://event.weibo.com/1530738
http://event.weibo.com/1530894
http://event.weibo.com/1530950
http://event.weibo.com/1530994
http://event.weibo.com/1531078
http://event.weibo.com/1531124
http://event.weibo.com/1531174
http://event.weibo.com/1531232
http://event.weibo.com/1531258
http://event.weibo.com/1531296
http://event.weibo.com/1531370
http://event.weibo.com/1531398
http://event.weibo.com/1531424
http://event.weibo.com/1531502
http://event.weibo.com/1531548
http://event.weibo.com/1531570
http://event.weibo.com/1531646
http://event.weibo.com/1531678
http://event.weibo.com/1531896
http://event.weibo.com/1532042
http://event.weibo.com/1532104
http://www.aibang.com/show/2030786713-420512352/product/6818807.html
http://www.aibang.com/show/2030786713-420512352/product/6820139.html
http://www.aibang.com/show/2030786713-420512352/product/6820737.html
http://www.aibang.com/show/2030786713-420512352/product/6821397.html
http://www.aibang.com/show/2030786713-420512352/product/6821503.html
http://www.aibang.com/show/2030786713-420512352/product/6821595.html
http://www.aibang.com/show/2030786713-420512352/product/6822171.html
http://www.aibang.com/show/2030786713-420512352/product/6822507.html
http://www.aibang.com/show/2030786713-420512352/product/6823153.html
http://www.aibang.com/show/2030786713-420512352/product/6823323.html
http://www.aibang.com/show/2030786713-420512352/product/6823473.html
http://www.aibang.com/show/2030786713-420512352/product/6823667.html
http://www.aibang.com/show/2030786713-420512352/product/6823859.html
http://www.aibang.com/show/2030786713-420512352/product/6822895.html
http://www.aibang.com/show/2030786713-420512352/product/6824643.html
http://www.aibang.com/show/2030786713-420512352/product/6824791.html
http://www.aibang.com/show/2030786713-420512352/product/6825061.html
http://www.aibang.com/show/2030786713-420512352/product/6825213.html
http://www.aibang.com/show/2030786713-420512352/product/6825377.html
http://www.aibang.com/show/2030786713-420512352/product/6825531.html
http://www.aibang.com/show/2030786713-420512352/product/6825761.html
http://t.163.com/event/info/eventId/6468806818446863628
http://t.163.com/event/info/eventId/4162966481465020477
http://t.163.com/event/info/eventId/-1432756290740184790
http://t.163.com/event/info/eventId/6584025755276101573
http://t.163.com/event/info/eventId/2419436092951703686
http://t.163.com/event/info/eventId/3792316021441984859
http://t.163.com/event/info/eventId/-6931781181569746880
http://t.163.com/event/info/eventId/-6749566727314598734
http://t.163.com/event/info/eventId/8872313665768166801
http://t.163.com/event/info/eventId/8249636960572414284
http://t.163.com/event/info/eventId/8824197113950989487
http://t.163.com/event/info/eventId/-3880598366478854148
http://t.163.com/event/info/eventId/7167604523099751429
http://t.163.com/event/info/eventId/-7293638021469576201
http://t.163.com/event/info/eventId/-9161677318767501145
http://t.163.com/event/info/eventId/-7881966967872804412
http://t.163.com/event/info/eventId/768536188452223843
http://t.163.com/event/info/eventId/1255934387362666434
http://t.163.com/event/info/eventId/-8590695139330087452
http://photo.163.com/q/7417305
http://photo.163.com/q/7417312
http://photo.163.com/q/7417321
http://photo.163.com/q/7417333
http://photo.163.com/q/7417342
http://photo.163.com/q/7417385
http://photo.163.com/q/7417412
http://photo.163.com/q/7417425
http://photo.163.com/q/7417435
http://photo.163.com/q/7417453
http://photo.163.com/q/7417463
http://photo.163.com/q/7417472
http://photo.163.com/q/7417482
http://photo.163.com/q/7417496
http://photo.163.com/q/7417508
http://www.luohe.com.cn/html/zxzx/2013-09/13090438354407.html
http://www.luohe.com.cn/html/zxzx/2013-09/1309044087665.html
http://www.luohe.com.cn/html/zxzx/2013-09/1309044185933.html
http://www.luohe.com.cn/html/zxzx/2013-09/1309044220428.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090443290823.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090444193765.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090445309524.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090446206840.html
http://www.luohe.com.cn/html/zxzx/2013-09/1309044774422.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090447478805.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090448442815.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090449277327.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090450270387.html
http://www.luohe.com.cn/html/zxzx/2013-09/13090451135641.html
http://www.luohe.com.cn/html/zxzx/2013-09/1309045290751.html
http://www.zhihu.com/collection/25960903
http://www.zhihu.com/collection/25961122
http://www.zhihu.com/collection/25961312
http://www.zhihu.com/collection/25961375
http://www.zhihu.com/collection/25961448
http://www.zhihu.com/collection/25963916
http://www.zhihu.com/collection/25961626
http://www.zhihu.com/collection/25961671
http://www.zhihu.com/collection/25961827
http://www.zhihu.com/collection/25961893
http://www.zhihu.com/collection/25961976
http://www.zhihu.com/collection/25962109
http://www.zhihu.com/collection/25962174
http://www.zhihu.com/collection/25962208
http://www.zhihu.com/collection/25962371
http://www.zhihu.com/collection/25962428
http://www.zhihu.com/collection/25962551
http://www.zhihu.com/collection/25962585
http://www.zhihu.com/collection/25962700
http://www.zhihu.com/collection/25962750
http://www.zhihu.com/collection/25962870
http://www.zhihu.com/collection/25963054
http://www.zhihu.com/collection/25963097
http://www.zhihu.com/collection/25963233
http://www.zhihu.com/collection/25963304
http://www.zhihu.com/collection/25963407
http://www.zhihu.com/collection/25963463
http://www.zhihu.com/collection/25963593
http://www.zhihu.com/collection/25963653
http://www.zhihu.com/collection/25963776
原创粉丝点击