以下是Android活动的生命周期示例代码:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.d("Lifecycle", "onCreate called");
}
@Override
protected void onStart() {
super.onStart();
Log.d("Lifecycle", "onStart called");
}
@Override
protected void onResume() {
super.onResume();
Log.d("Lifecycle", "onResume called");
}
@Override
protected void onPause() {
super.onPause();
Log.d("Lifecycle", "onPause called");
}
@Override
protected void onStop() {
super.onStop();
Log.d("Lifecycle", "onStop called");
}
@Override
protected void onDestroy() {
super.onDestroy();
Log.d("Lifecycle", "onDestroy called");
}
@Override
protected void onRestart() {
super.onRestart();
Log.d("Lifecycle", "onRestart called");
}
}
这是一个简单的MainActivity类,它扩展自AppCompatActivity类。在每个生命周期方法中,我们使用Log.d()方法打印出相应的生命周期事件。你可以在Logcat窗口中查看这些日志。
请注意,这只是一个简单的示例,你可以在每个生命周期方法中添加自己的逻辑。
上一篇:Android活动的内存消耗
下一篇:Android活动的暂停和恢复