Activity:
An activity represents a single screen with a user interface just like window or frame of Java. Android activity is the subclass of ContextThemeWrapper class
Service
A service is a component that runs in the background to perform long-running operations without needing to interact with the user and it works even if application is destroyed.
BroadCast Reciver
Broadcast Receivers simply respond to broadcast messages from other applications or from the system itself. These messages are sometime called events or intents. For example, applications can also initiate broadcasts to let other applications know that some data has been downloaded to the device and is available for them to use, so this is broadcast receiver who will intercept this communication and will initiate appropriate action.
Content Providers
A content provider component supplies data from one application to others on request. Such requests are handled by the methods of the ContentResolver class. A content provider can use different ways to store its data and the data can be stored in a database, in files, or even over a network.
- Activity & Life Cycle
If you have worked with C, C++ or Java programming language then you must have seen that your program starts from main() function. Very similar way, Android system initiates its program with in an Activity starting with a call ononCreate() callback method. There is a sequence of callback methods that start up an activity and a sequence of callback methods that tear down an activity as shown in the below Activity life cycle diagram:
The Activity class defines the following call backs i.e. events. You don’t need to implement all the callbacks methods. However, it’s important that you understand each one and implement those that ensure your app behaves the way users expect.
Call Back | Discription |
onCreate() | This is the first callback and called when the activity is first created. |
onStart() | This callback is called when the activity becomes visible to the user. |
onResume() | This is called when the user starts interacting with the application. |
onPause() | The paused activity does not receive user input and cannot execute any code and called when the current activity is being paused and the previous activity is being resumed. |
onStop() | This callback is called when the activity is no longer visible. |
onDestroy() | This callback is called before the activity is destroyed by the system. |
onRestart() | This callback is called when the activity restarts after stopping it. |
mainActivity.java
package com.example.activitylifecycle;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.d("lifecycle","onCreate invoked");
Toast.makeText(MainActivity.this, "onCreate invoked", Toast.LENGTH_SHORT).show();
}
@Override
protected void onStart() {
super.onStart();
Log.d("lifecycle","onStart invoked");
Toast.makeText(MainActivity.this, "onStart invoked", Toast.LENGTH_SHORT).show();
}
@Override
protected void onResume() {
super.onResume();
Log.d("lifecycle","onResume invoked");
Toast.makeText(MainActivity.this, "onResume invoked", Toast.LENGTH_SHORT).show();
}
@Override
protected void onPause() {
super.onPause();
Log.d("lifecycle","onPause invoked");
Toast.makeText(MainActivity.this, "onPause invoked", Toast.LENGTH_SHORT).show();
}
@Override
protected void onStop() {
super.onStop();
Log.d("lifecycle","onStop invoked");
Toast.makeText(MainActivity.this, "onStop invoked", Toast.LENGTH_SHORT).show();
}
@Override
protected void onRestart() {
super.onRestart();
Log.d("lifecycle","onRestart invoked");
Toast.makeText(MainActivity.this, "onRestart invoked", Toast.LENGTH_SHORT).show();
}
@Override
protected void onDestroy() {
super.onDestroy();
Log.d("lifecycle","onDestroy invoked");
Toast.makeText(MainActivity.this, "onDestroyinvoked", Toast.LENGTH_SHORT).show();
}
}