生命周期
LifeActivity
Java代码
- package org.wp.activity;
-
-
/**
-
*
-
* Activity生命周期
-
*
-
* Activity有三个状态:
-
* 当它在屏幕前台时(位于当前任务堆栈的顶部),它是激活或运行状态
-
* 它就是响应用户操作的Activity
-
*
-
* 当它失去焦点但仍然对用户可见时
-
* 它处于暂停状态
-
* 即在它之上有另外一个Activity,这个Activity也许是透明的,或者没有完全覆盖全屏
-
* 所以被暂停的Activity仍对用户可见
-
* 暂停的Activity仍然是存活状态(它保留着所有的状态和成员信息并保持和窗口管理器的连接)
-
* 但系统处于极低内存时仍然可以杀死这个Activity
-
*
-
* 完全被另一个Activity覆盖时则处于停止状态
-
* 它仍然保留所有的状态和成员信息
-
* 然而对用户是不可见的,所以它的窗口将被隐藏
-
* 如果其它地方需要内存,则系统经常会杀死这个Activity
-
*
-
* 当Activity从一种状态转变到另一种状态时,会调用以下保护方法来通知这种变化:
-
* public void onCreate(Bundle savedInstanceState)
-
* protected void onStart()
-
* protected void onResume()
-
* protected void onRestart()
-
* protected void onPause()
-
* protected void onStop()
-
* protected void onDestroy()
-
*
-
* 这七个方法定义了Activity的完整生命周期
-
* 实现这些方法可以帮助我们监视其中的三个嵌套生命周期循环
-
*
-
* Activity的完整生命周期自第一次调用onCreate()开始
-
* 直至调用onDestroy()为止
-
* Activity在onCreate()中设置所有"全局"状态以完成初始化,而在onDestroy()中释放所有系统资源
-
* 例如,如果Activity有一个线程在后台运行从网络上下载数据,它会在onCreate()创建线程,而在 onDestroy()销毁线程
-
*
-
* Activity的可视生命周期自onStart()调用开始直到相应的onStop()调用结束
-
* 在此期间,用户可以在屏幕上看到Activity,尽管它也许并不是位于前台或者也不与用户进行交互
-
* 在这两个方法之间,我们可以保留用来向用户显示这个Activity所需的资源
-
* 例如,当用户不再看见我们显示的内容时,我们可以在onStart()中注册一个BroadcastReceiver来监控会影响UI的变化
-
* 而在onStop()中来注消
-
* onStart() 和 onStop() 方法可以随着应用程序是否为用户可见而被多次调用。
-
*
-
* Activity的前台生命周期自onResume()调用起,至相应的onPause()调用为止
-
* 在此期间,Activity位于前台最上面并与用户进行交互
-
* Activity会经常在暂停和恢复之间进行状态转换——例如当设备转入休眠状态或者有新的Activity启动时
-
* 将调用onPause() 方法
-
* 当Activity获得结果或者接收到新的Intent时会调用onResume()方法
-
*
-
*/
-
-
import android.app.Activity;
-
import android.app.AlertDialog;
-
import android.content.DialogInterface;
-
import android.os.Bundle;
-
import android.util.Log;
-
import android.view.View;
-
import android.widget.Button;
-
-
public class LifeActivity extends Activity {
-
private static final String TAG = "LifeActivity";
-
-
@Override
-
public void onCreate(Bundle savedInstanceState) {
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.main);
-
-
Log.i(TAG, "onCreate");
-
-
Button button = (Button) this.findViewById(R.id.button);
-
button.setOnClickListener(new View.OnClickListener() {
-
-
@Override
-
public void onClick(View arg0) {
-
AlertDialog.Builder builder = new AlertDialog.Builder(LifeActivity.this);
-
builder.setMessage("Are you sure you want to exit?")
-
.setCancelable(false).setPositiveButton("Yes", new DialogInterface.OnClickListener() {
-
public void onClick(DialogInterface dialog, int id) {
-
dialog.cancel();
-
}}).setNegativeButton("No", new DialogInterface.OnClickListener() {
-
public void onClick(DialogInterface dialog, int id) {
-
dialog.cancel();
-
}
-
});
-
AlertDialog alert = builder.create();
-
alert.show();
-
}
-
});
-
}
-
-
@Override
-
protected void onStart() {
-
Log.i(TAG, "onStart");
-
super.onStart();
-
}
-
-
@Override
-
protected void onResume() {
-
Log.i(TAG, "onResume");
-
super.onResume();
-
}
-
-
@Override
-
protected void onRestart() {
-
Log.i(TAG, "onRestart");
-
super.onRestart();
-
}
-
-
@Override
-
protected void onPause() {
-
Log.i(TAG, "");
-
super.onPause();
-
}
-
-
@Override
-
protected void onStop() {
-
Log.i(TAG, "onStop");
-
super.onStop();
-
}
-
-
@Override
-
protected void onDestroy() {
-
Log.i(TAG, "onDestroy");
-
super.onDestroy();
-
}
-
-
}
阅读(831) | 评论(0) | 转发(0) |