当前位置:操作系统 > 安卓/Android >>

[Android开发学习22]Activity的声明周期--Activity Lifecycle

一、基础知识:

 

1.一个Activity的生命周期图:

 

2.一个Activity的生命周期相关函数:

[java]
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(); 
 } 

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();
 }

3.一个Activity的生命周期相关函数的具体介绍:

Method Description Killable? Next
onCreate() 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().
 No onStart()
  onRestart() Called after your activity has been stopped, prior to it being started again.
Always followed by onStart()
 No onStart()
onStart() Called when the activity is becoming visible to the user.
Followed by onResume() if the activity comes to the foreground, or onStop() if it becomes hidden.
 No onResume()or onStop()
  onResume() 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().
 No onPause()
onPause() 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.
 Pre-HONEYCOMB onResume()or
onStop()
onStop() 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, oronDestroy() if this activity is going away.
 Yes onRestart()or
onDestroy()
onDestroy() 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 theisFinishing() method. Yes nothing


这个表格的内容非常重要,必须全部理解。

上面三部分均引用自我们安装的SDK文件夹内的文档,我引用的具易做图置是:

file:///D:/Program Files/android-sdk-windows__BACK/docs/reference/android/app/Activity.html#ActivityLifecycle

 (从D:\Program Files\android-sdk-windows\docs中的offline.html文件 进入)

 

 

 

 

二、代码展示:

1."Activity_04\src\pinggle\activity_04\Activity_04.java"

[java]
package pinggle.activity_04; 
 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.TextView; 
import android.app.Activity; 
import android.content.Intent; 
 
public class Activity_04 extends Activity { 
    private TextView myFirstText; 
    private Button  myButton; 
     
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
        System.out.println(" FirstActivity -->> onCreate ... "); 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.activity_activity_04); 
         
        //根据控件的ID来取得代表控件的对象  
        myFirstText = (TextView)findViewById(R.id.myText); 
        myButton = (Button)findViewById(R.id.myButton); 
         
        // 为symbol和calculate设置显示的值  
        myFirstText.setText(R.string.first_text); 
        myButton.setText(R.string.button_text); 
                 
        // 将易做图的对象绑定到按钮对象上面  
        myButton.setOnClickListener(new CalculateListener()); 
    } 
     
    class CalculateListener implements OnClickListener{ 
 
        @Override 
        public void onClick(View v) { 
            // TODO Auto-generated method stub  
            // 为另一个Activity构造Intent对象  
            Intent intent = new Intent(); 
            intent.setClass(Activity_04.this, SecondActivity.class); 
            // 使用这个Intent对象来启动SecondActivity  
            Activity_04.this.startActivity(intent); 
        } 
         
    } 
     
    @Override 
    protected void onStart() { 
        // TODO Auto-generated method stub  
        System.out.println(" FirstActivity -->> onStart ... "); 
        super.onStart(); 
    } 
     

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,