![]() |
VOOZH | about |
In Android, Context is an important component that provides access to application-specific resources and information. It acts as a bridge between the Android system and application components. Context is used to access resources, start activities and services, and interact with different parts of an Android application.
The code has been given in both Java and Kotlin Programming Language for Android.
Imagine a person staying in a hotel. To get breakfast, lunch, room service, or other facilities, the person contacts the room-service staff.
Just as room service provides access to hotel facilities, Context provides access to app resources, databases, SharedPreferences, and system services.
There are mainly two types of Context that are available in Android.
It can be seen in the above image that in "Sample Application", the nearest Context is Application Context. In "Activity1" and "Activity2", both Activity Context (Here it is Activity1 Context for Activity1 and Activity2 Context for Activity2) and Application Context.The nearest Context to both is their Activity Context only.
This Context is tied to theLifecycle of an Application. Mainly it is an instance that is a singleton and can be accessed via getApplicationContext(). Some use cases of Application Context are:
getApplicationContext(): getApplicationContext() returns the Context of the entire application. It is used for application-wide operations such as accessing resources, starting services, and sharing data across multiple activities. Unlike Activity Context, it remains available throughout the application's lifecycle.
Inside the activity class, set the name and email of GlobalExampleClass, which can be accessed from another activity. Let us see via the below steps.
// Activity 1
public class <your activity1> extends Activity {
........
........
private <yourapplicationname> globarVar;
........
@Override
public void onCreate(Bundle savedInstanceState) {
.......
final GlobalExampleClass globalExampleVariable = (GlobalExampleClass) getApplicationContext();
// In this activity set name and email and can reuse in other activities
globalExampleVariable.setName("getApplicationContext example");
globalExampleVariable.setEmail("xxxxxx@gmail.com");
.......
}
// Activity 2
public class <your activity2> extends Activity {
........
........
private <yourapplicationname> globarVar;
.......
@Override
public void onCreate(Bundle savedInstanceState) {
.......
final GlobalExampleClass globalExampleVariable = (GlobalExampleClass) getApplicationContext();
// As in activity1, name and email is set, we can retrieve it here
final String globalName = globalExampleVariable.getName();
final String globalEmail = globalExampleVariable.getEmail();
.......
}So, whenever the variable scope is required throughout the application, we can get it by means of getApplicationContext(). Following is a list of functionalities of Application Context.
It is the activity Context meaning each and every screen got an activity. For example, EnquiryActivity refers to EnquiryActivity only and AddActivity refers to AddActivity only. It is tied to the life cycle of activity. It is used for the current Context. The method of invoking the Activity Context is getContext().
Some use cases of Activity Context are:
getContext(): It returns the Context which is linked to the Activity from which it is called. This is useful when we want to call the Context from only the current running activity.
From the functionalities of both Application and Activity, we can see that the difference is that the Application Context is not related to UI. It should be used only to start a service or load resource values etc. Apart from getApplicationContext() and getContext(), getBaseContext() or this are the different terminologies used throughout the app development. Let us see with an example
The base Context is set by the constructor or setBaseContext().This method is only valid if we have a ContextWrapper. Android provides a ContextWrapper class that is created around an existing Context using:
ContextWrapper wrapper = new ContextWrapper(context);The benefit of using a ContextWrapper is that it lets you “modify behavior without changing the original Context”.
public <YourHandler>(Context ctx) {
// if the context is instanceof ContextWrapper
while (ctx instanceof ContextWrapper) {
// use getBaseContext()
final Context baseContext = ((ContextWrapper)context).getBaseContext();
if (baseContext == null) {
break;
}
// And then we can assign to context and reuse that
ctx = baseContext;
}
}"this" argument is of a type "Context". To explain this Context let's take an example to show a Toast Message using "this".