Skip to main content

AMP PRACTICAL 3

 

                              Aim: Activity Lifecycle                                             

MainActivity.java

package com.example.myapplication;

 import androidx.appcompat.app.AppCompatActivity;

import android.util.Log;

 import android.os.Bundle;

 public class MainActivity extends AppCompatActivity { 

String tag = "LifeCycle";

 @Override

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