下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
【移動(dòng)應(yīng)用開發(fā)技術(shù)】Android中Activity的生命周期有哪些
Android中Activity的生命周期有哪些,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。首先看到的事onCreate()函數(shù),顧名思義這個(gè)函數(shù)在Activity開始創(chuàng)建時(shí)調(diào)用,可以在其中定義一些初始化操作。接下來是onStart()方法,這個(gè)方法在Activity開始被執(zhí)行時(shí)調(diào)用,它緊隨onCreate()方法之后調(diào)用,接著是onResume()方法,這個(gè)方法對(duì)我們來說算是比較陌生的,這個(gè)方法是在該Activity或得用戶輸入焦點(diǎn)時(shí)被調(diào)用,這個(gè)或得用戶輸入焦點(diǎn)有點(diǎn)不好理解,如果我們用過Android手機(jī)或者其他系統(tǒng)的手機(jī)時(shí),經(jīng)常會(huì)看到有些窗口雖然能看到但無法對(duì)他進(jìn)行操作,這時(shí)的Activity就沒有或得用戶焦點(diǎn)。當(dāng)這個(gè)方法調(diào)用后Activity開始真正的運(yùn)行了,在Activity正在運(yùn)行時(shí)用戶激活了另一個(gè)Activity,這時(shí)將調(diào)用***個(gè)Activity的onPause()方法,可以理解為***個(gè)Activity被暫停了,這個(gè)時(shí)候如果系統(tǒng)的內(nèi)存不夠用,***個(gè)Activity的進(jìn)程可能被停止(何時(shí)被停止是由系統(tǒng)決定的,不需要我們參入),當(dāng)下次我們?cè)龠\(yùn)行***個(gè)Activity時(shí)就需要重新創(chuàng)建這個(gè)Activity,那就又需要調(diào)用onCreate()方法。如果在這個(gè)Activity沒有被停止的情況下,我們重新調(diào)用***個(gè)Activity,就會(huì)直接調(diào)用它的onResume()方法后開始運(yùn)行。如果***個(gè)Activity很久都沒有得到再次運(yùn)行機(jī)會(huì),就會(huì)調(diào)用onStop()被停止,這時(shí)如果Activity又或得用戶輸入焦點(diǎn),就會(huì)調(diào)用onRestart()方法,重新開始執(zhí)行這個(gè)Activity,或者被系統(tǒng)停止,否則調(diào)用onDestroy()方法銷毀Activity。其實(shí)在實(shí)際開發(fā)中我們很少會(huì)用到所有的生命周期函數(shù),但我們要弄清它的原理,在使用時(shí)知道所以然就行了。下面來看一個(gè)實(shí)例***個(gè)Activity的布局文件(main.xml):Xml代碼<?xml
version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="/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/myButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/first_button"
/>
</LinearLayout>第二個(gè)Activity的布局文件(Second.xml):Xml代碼<?xml
version="1.0"
encoding="utf-8"?>
<manifest
xmlns:android="/apk/res/android"
package="mars.activity05"
android:versionCode="1"
android:versionName="1.0">
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<activity
android:name=".FirstActivity"
android:label="@string/app_name">
<intent-filter>
<action
android:name="ent.action.MAIN"
/>
<category
android:name="ent.category.LAUNCHER"
/>
</intent-filter>
</activity>
<activity
android:name=".SecondActivity"
android:label="SecondActivity"
android:theme="@android:style/Theme.Dialog"/>
</application>
<uses-sdk
android:minSdkVersion="4"
/>
</manifest>FirstActivity.java:Java代碼package
mars.activity05;
import
android.app.Activity;
import
android.content.Intent;
import
android.os.Bundle;
import
android.view.View;
import
android.view.View.OnClickListener;
import
android.widget.Button;
public
class
FirstActivity
extends
Activity
{
/**
Called
when
the
activity
is
first
created.
*/
private
Button
myButton;
@Override
public
void
onCreate(Bundle
savedInstanceState)
{
System.out.println("FirstActivity
>
onCreate
");
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
myButton
=
(Button)
findViewById(R.id.myButton);
myButton.setOnClickListener(new
ButtonListener());
}
@Override
protected
void
onDestroy()
{
//
TODO
Auto-generated
method
stub
System.out.println("FirstAcvity
>onDestory");
super.onDestroy();
}
@Override
protected
void
onPause()
{
//
TODO
Auto-generated
method
stub
System.out.println("FirstAcvity
>onPause");
super.onPause();
}
@Override
protected
void
onRestart()
{
//
TODO
Auto-generated
method
stub
System.out.println("FirstAcvity
>onRestart");
super.onRestart();
}
@Override
protected
void
onResume()
{
//
TODO
Auto-generated
method
stub
System.out.println("FirstAcvity
>onResume");
super.onResume();
}
@Override
protected
void
onStart()
{
//
TODO
Auto-generated
method
stub
System.out.println("FirstAcvity
>onStart");
super.onStart();
}
@Override
protected
void
onStop()
{
//
TODO
Auto-generated
method
stub
System.out.println("FirstAcvity
>onStop");
super.onStop();
}
class
ButtonListener
implements
OnClickListener
{
@Override
public
void
onClick(View
v)
{
//
TODO
Auto-generated
method
stub
Intent
intent
=
new
Intent();
intent.setClass(FirstActivity.this,
SecondActivity.class);
FirstActivity.this.startActivity(intent);
}
}
}SecondActivity.java:Java代碼package
mars.activity05;
import
android.app.Activity;
import
android.content.Intent;
import
android.os.Bundle;
import
android.view.View;
import
android.view.View.OnClickListener;
import
android.widget.Button;
public
class
SecondActivity
extends
Activity{
private
Button
secondButton;
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
System.out.println("SecondActivity>onCreate");
//
TODO
Auto-generated
method
stub
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
secondButton
=
(Button)findViewById(R.id.secondButton);
secondButton.setOnClickListener(new
ButtonListener());
}
@Override
protected
void
onDestroy()
{
//
TODO
Auto-generated
method
stub
System.out.println("SecondActivity>onDestory");
super.onDestroy();
}
@Override
protected
void
onPause()
{
//
TODO
Auto-generated
method
stub
System.out.println("SecondActivity>onPause");
super.onPause();
}
@Override
protected
void
onRestart()
{
//
TODO
Auto-generated
method
stub
System.out.println("SecondActivity>onRestart");
super.onRestart();
}
@Override
protected
void
onResume()
{
//
TODO
Auto-generated
method
stub
System.out.println("SecondActivity>onResume");
super.onResume();
}
@Override
protected
void
onStart()
{
//
TO
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 英語 漫畫 課件
- 《做功了嗎》課件
- 手術(shù)總結(jié) 課件
- 西京學(xué)院《英美文學(xué)導(dǎo)讀》2022-2023學(xué)年第一學(xué)期期末試卷
- 西京學(xué)院《書法》2021-2022學(xué)年第一學(xué)期期末試卷
- 西京學(xué)院《機(jī)器學(xué)習(xí)》2021-2022學(xué)年期末試卷
- 西京學(xué)院《工程造價(jià)軟件應(yīng)用》2022-2023學(xué)年第一學(xué)期期末試卷
- 2024-2025學(xué)年高考語文試題及參考答案
- 西華師范大學(xué)《智能計(jì)算》2022-2023學(xué)年期末試卷
- 西華師范大學(xué)《寫實(shí)油畫》2023-2024學(xué)年第一學(xué)期期末試卷
- 文本講稿進(jìn)階trading options greeks how time volatility and other pricing factors drive pro
- [筆記]HACCP計(jì)劃書(火腿腸)
- XPS原理及分析(課堂PPT)
- 1設(shè)計(jì)集52塔設(shè)備設(shè)計(jì)說明書
- 基于組態(tài)王655換熱器實(shí)驗(yàn)控制系統(tǒng)
- 引孔法三管高壓旋噴樁施工工法
- 英語經(jīng)典美文誦讀100篇 英語經(jīng)典美文.doc
- 廣傳公派下《十二房》巨漢公傳下譜序
- 中國船用柴油機(jī)技術(shù)發(fā)展歷程
- (施工方案)墩頂?shù)趸@圓弧段安裝施工方案全解
- 小品劇本——《打工奇遇》【精選】
評(píng)論
0/150
提交評(píng)論