Activity的生命周期
Java代码
// 销毁 protected void onDestroy() { System.out.println("onDestroy"); super.onDestroy(); } // 暂停 protected void onPause() { System.out.println("onPause"); super.onPause(); } // 重新启动 protected void onRestart() { System.out.println("onRestart"); super.onRestart(); } // Resume protected void onResume() { System.out.println("onResume"); super.onResume(); }
作者“Android开发”
补充:移动开发 , Android ,