Android

[Android] Activity Life Cycle

tenn 2012. 7. 3. 18:24




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



ref : http://developer.android.com/reference/android/app/Activity.html

저작자표시 (새창열림)