You are on page 1of 2

PROGRAM ON ACTIVITY LIFE CYCLE:

XML:

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

JAVA:

package com.example.life;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {


public String tag="application is:";

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toast.makeText(MainActivity.this,"created",Toast.LENGTH_LONG).show();

}
protected void onStart()
{
super.onStart();
Log.d(tag,"started");
Toast.makeText(MainActivity.this,"started",Toast.LENGTH_LONG).show();
}

protected void onResume()


{
super.onResume();
Log.d(tag,"Resumed");
Toast.makeText(MainActivity.this,"resumed",Toast.LENGTH_LONG).show();
}
protected void onPause()
{
super.onPause();
Log.d( tag, "Paused");
Toast.makeText(MainActivity.this,"paused",Toast.LENGTH_LONG).show();
}
protected void onStop()
{
super.onStop();
Log.d(tag,"Stoped");
Toast.makeText(MainActivity.this,"stopped",Toast.LENGTH_LONG).show();
}
protected void onRestart()
{
super.onRestart();
Log.d(tag,"Restarted");
Toast.makeText(MainActivity.this,"restarted",Toast.LENGTH_LONG).show();
}
protected void onDestroy()
{
super.onDestroy();
Log.d( tag, "Destroyed");
Toast.makeText(MainActivity.this,"destroyed",Toast.LENGTH_LONG).show();
}
}

android manifeast

<?xml version="1.0" encoding="utf-8"?>


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.life">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Life">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />


</intent-filter>
</activity>
</application>

</manifest>

You might also like