Aim: Activity Lifecycle
MainActivity.java
package com.example.myapplication;
import android.util.Log;
String tag = "LifeCycle";
protected void
onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); Log.d(tag, "In
the onCreate()event");
}
public void onStart()
{ super.onStart();
Log.d(tag, "In
the onStart()event");
}
public void onRestart() { super.onRestart();
Log.d(tag,
"In the onRestart()event");
}
public void onResume() { super.onResume();
Log.d(tag, "In
the onResume()event");
}
public void onPause() { super.onPause();
Log.d(tag, "In
the onPause()event");
}
public void onStop()
{ super.onStop();
Log.d(tag, "In
the onStop()event");
}
public void onDestroy() { super.onDestroy();
Log.d(tag,
"In the onDestroy()event");
}
}
Output
Comments
Post a Comment
If you have any doubts, Please let me know.