一般来说。熟悉android程序设计的人都知道android有三个基础组件activity,service和broadcastreceiver,他们都是依赖intent来启动。本文所要介绍的是activity的生命周期以及针对activity的intent使用。
之前的例子一直都是使用activity,在一个layout xml与一个activity捆绑的情况下可以视为一个form,多个layout xml与一个activity捆绑的话那就是个application本身了。intent可以分为显式intent和隐式intent:显式intent用于启动明确的目标组件(前面所说的三大组件),同一个application内的多个activity调用也是显式intent;隐式intent就是调用没有明确的目标组件,可以是系统也可以是第三方程序。隐式intent一般用于调用系统组件功能,相关例程都是网络上很容易找到的(调用某些系统组件的时候要申请权限)。
acitivity的运行状况分为:oncreate、ondestroy、onstart、onstop、onrestart、onresume、onpause,oncreate对应ondestroy,onstart对应onstop,onresume对应onpause。
先贴出本文运行截图如下:
这个是从acitivity1转到activity2的时候,acitivity1的状态变化,使用了finish()会触发ondestroy()。
这个是从activity2转到activity1的时候,acitivity2的状态变化。从两次activity的启动可以看出,流程是oncreate()->onstart()->onresume()三个方法,销毁是onpause()->onstop()->ondestroy()。另外,要往工程添加第二个activity,需要到androidmanifest.xml->application那里添加activity2。
main1.xml的源码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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" >
<button android:layout_width= "wrap_content"
android:layout_height= "wrap_content" android:id= "@+id/main1.button01"
android:text= "跳转到activity2" ></button>
<edittext android:text= "@+id/edittext01" android:id= "@+id/edittext01"
android:layout_width= "wrap_content" android:layout_height= "wrap_content" ></edittext>
<button android:layout_width= "wrap_content"
android:layout_height= "wrap_content" android:id= "@+id/main1.button02"
android:text= "跳转到外部activity" ></button>
</linearlayout>
|
main2.xml的源码如下:
1
2
3
4
5
6
7
8
|
<?xml version= "1.0" encoding= "utf-8" ?>
<linearlayout android:id= "@+id/linearlayout01"
android:layout_width= "fill_parent" android:layout_height= "fill_parent"
xmlns:android= "http://schemas.android.com/apk/res/android" >
<button android:layout_width= "wrap_content"
android:layout_height= "wrap_content" android:id= "@+id/main2.button01"
android:text= "返回activity1" ></button>
</linearlayout>
|
activity1的java源码如下:
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
94
95
96
97
98
99
100
101
|
package com.testactivityintent;
import android.app.activity;
import android.content.intent;
import android.content.sharedpreferences;
import android.net.uri;
import android.os.bundle;
import android.util.log;
import android.view.view;
import android.widget.button;
import android.widget.edittext;
public class testactivityintent extends activity {
/** called when the activity is first created. */
button btntointernalactivity;
button btntoexternalactivity;
edittext tbbundle;
@override
public void oncreate(bundle savedinstancestate) {
super .oncreate(savedinstancestate);
log.e( "activity1" , "oncreate" ); //显示当前状态,oncreate与ondestroy对应
setcontentview(r.layout.main1);
btntointernalactivity=(button) this .findviewbyid(r.id.main1_button01);
btntoexternalactivity=(button) this .findviewbyid(r.id.main1_button02);
btntointernalactivity.setonclicklistener( new clickevent());
btntoexternalactivity.setonclicklistener( new clickevent());
tbbundle=(edittext) this .findviewbyid(r.id.edittext01);
}
public void ondestroy()
{
super .ondestroy();
log.e( "activity1" , "ondestroy" ); //显示当前状态,oncreate与ondestroy对应
}
@override
public void onstart()
{
super .onstart();
log.e( "activity1" , "onstart" ); //显示当前状态,onstart与onstop对应
}
@override
public void onstop()
{
super .onstop();
log.e( "activity1" , "onstop" ); //显示当前状态,onstart与onstop对应
}
@override
public void onrestart()
{
super .onrestart();
log.e( "activity1" , "onrestart" );
}
@override
public void onresume()
{
super .onresume();
log.e( "activity1" , "onresume" ); //显示当前状态,onpause与onresume对应
sharedpreferences prefs = getpreferences( 0 ); //sharedpreferences 用于存储数据
string restoredtext = prefs.getstring( "edittext01" , null );
if (restoredtext != null ) {
this .tbbundle.settext(restoredtext);
}
}
@override
public void onpause()
{
super .onresume();
log.e( "activity1" , "onpause" ); //显示当前状态,onpause与onresume对应
//保存文本框的内容,使得重回本acitivity的时候可以恢复
sharedpreferences.editor editor = getpreferences( 0 ).edit(); //sharedpreferences 用于存储数据
editor.putstring( "edittext01" , this .tbbundle.gettext().tostring());
editor.commit();
}
class clickevent implements view.onclicklistener{
@override
public void onclick(view v) {
if (v==btntointernalactivity)
{
intent intent = new intent();
intent.setclass(testactivityintent. this ,activity2. class );
//new一个bundle对象,并将要传递的数据传入
bundle bundle = new bundle();
bundle.putstring( "text" ,tbbundle.gettext().tostring());
//将bundle对象assign给intent
intent.putextras(bundle);
//调用activity2
startactivity(intent);
testactivityintent. this .finish(); //会触发ondestroy();
}
else if (v==btntoexternalactivity)
{
//有些外部调用需要开启权限
uri uri = uri.parse( "http://google.com" );
intent it = new intent(intent.action_view, uri);
startactivity(it);
}
}
}
}
|
activity2的java源码如下:
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
|
package com.testactivityintent;
import android.app.activity;
import android.content.intent;
import android.os.bundle;
import android.util.log;
import android.view.view;
import android.widget.button;
public class activity2 extends activity {
button btnbackmain1;
public void oncreate(bundle savedinstancestate)
{
super .oncreate(savedinstancestate);
log.e( "activity2" , "oncreate" ); //显示当前状态,oncreate与ondestroy对应
//加载activity2.xml
setcontentview(r.layout.main2);
//得intent中的bundle对象
bundle bunde = this .getintent().getextras();
//取得bundle对象中的数据
log.i( "in_text" , bunde.getstring( "text" ));
btnbackmain1=(button) this .findviewbyid(r.id.main2_button01);
btnbackmain1.setonclicklistener( new clickevent());
}
public void ondestroy()
{
super .ondestroy();
log.e( "activity2" , "ondestroy" ); //显示当前状态,oncreate与ondestroy对应
}
@override
public void onstart()
{
super .onstart();
log.e( "activity2" , "onstart" ); //显示当前状态,onstart与onstop对应
}
@override
public void onstop()
{
super .onstop();
log.e( "activity2" , "onstop" ); //显示当前状态,onstart与onstop对应
}
@override
public void onrestart()
{
super .onrestart();
log.e( "activity2" , "onrestart" );
}
@override
public void onresume()
{
super .onresume();
log.e( "activity2" , "onresume" ); //显示当前状态,onpause与onresume对应
}
@override
public void onpause()
{
super .onresume();
log.e( "activity2" , "onpause" ); //显示当前状态,onpause与onresume对应
}
class clickevent implements view.onclicklistener{
@override
public void onclick(view v) {
if (v==btnbackmain1)
{
intent intent = new intent();
intent.setclass(activity2. this ,testactivityintent. class );
//调用activity1
startactivity(intent);
activity2. this .finish(); //会触发ondestroy();
}
}
}
}
|
希望本例所述的acitivity用法能对大家的android程序开发起到一定的帮助作用。