android Activity生命週期的例子

來源:互聯網
上載者:User

標籤:

package com.example.yanlei.yl2;import android.app.AlertDialog;import android.content.DialogInterface;import android.content.DialogInterface.OnKeyListener;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.widget.TextView;public class MainActivity extends AppCompatActivity {    public static final String TAG = "生命週期:";    String Str = "";    TextView pTextView = null;    @Override    public void onCreate(Bundle savedInstanceState) {        //當建立此Activity的時候回調        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        Log.e(TAG, "onCreate");        try {            Str = Str + "建立:\n";            pTextView.setText(Str);        } catch (Exception e) {            //Log.e(TAG, "error : "+e.getMessage(), e);        }    }    @Override    protected void onDestroy() {        //當銷毀此Activity的時候回調        super.onDestroy();        Log.e(TAG, "onDestroy");        try {            Str = Str + "摧毀:\n";            pTextView.setText(Str);        } catch (Exception e) {            //Log.e(TAG, "error : "+e.getMessage(), e);        }    }    @Override    protected void onPause() {        //當暫停此Activity的時候回調        super.onPause();        Log.e(TAG, "onPause");        try {            Str = Str + "暫停:\n";            pTextView.setText(Str);        } catch (Exception e) {            // Log.e(TAG, "error : "+e.getMessage(), e);        }    }    @Override    protected void onRestart() {        //當重新開始此Activity的時候回調        super.onRestart();        Log.e(TAG, "onRestart");        try        {            Str = Str + "重新啟動:\n";            pTextView.setText(Str);        } catch (Exception e) {            //Log.e(TAG, "error : "+e.getMessage(), e);        }    }    @Override    protected void onResume() {        //當顯示展示此Activity的介面的時候回調        super.onResume();        Log.e(TAG, "onResume");        try {            Str = Str + "繼續:\n";            pTextView.setText(Str);        } catch (Exception e) {            //Log.e(TAG, "error : "+e.getMessage(), e);        }    }    @Override    protected void onStart() {        //當使用此Activity可以接受使用者操作的時候回調        super.onStart();        Log.e(TAG, "onStart");        try {            Str = Str + "開始:\n";            pTextView.setText(Str);        } catch (Exception e) {            //Log.e(TAG, "error : "+e.getMessage(), e);        }    }    @Override    protected void onStop() {        //當停止此Activity的時候回調        super.onStop();        Log.e(TAG, "onStop");        try {            Str = Str + "停止:\n";            pTextView.setText(Str);        } catch (Exception e) {            //Log.e(TAG, "error : "+e.getMessage(), e);        }    }}

日誌如下:

onCreate
onStart
onResume

onPause
onStop
onDestroy

android Activity生命週期的例子

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.