Context in Android : Application Context vs Activity Context

Posted By : Bipin Tiwari | 29-Jul-2021

What is Context?
 
In General, Context means what we are talking about or the situation within which some event happens.
In Android it a context simply means the context of the current state of the application or object. Generally, we use it to get information regarding another part of your program (activity/application package).

 

There are few keypoint to understand about context : 

  1.  It is the current state of the app.
  2.  We can use context to get information about the activity/application.
  3.  We can use it to access resources, databases and shared preferences.
  4.  In android, activity/application both extend the Context class.

 
In Android Application, we can find context almost everywhere and use it as we require. But using context in wrong can easily lead to memory leaks which can further lead to other issues.

 

In application, there are different type of context according to the place we are in. So to use it efficiently we need to understand both type of context.

 

There are essentially two types of context : 

  1. Application Context
  2. Activity Context

 

Let us get to know more about these two : 

 

1. Application Context : We can access it using getApplicationContext(). It returns the context for the entire application (the process inside which all activity is running). If somewhere in the activity we need a context which is tied to the whole application lifecycle and not just the activity. 

But if you want the application class registered in your manifest, we should never call getApplicationContext() because it necessarily may not be the application instance (example in case of test framework). The main difference between from this and other context is that it returns a global context i.e. acitivity context may be destroyed or may be unavailable based on your activity lifecycle but the application context remains till the application exists so we can use this for notification or any other services for which the context is required for longer time.

    

2. Activity Context : Activity context is associated with activity and will be destroyed once activity is destroyed. Activity Context has its own functionalities, some of them are : 
    
    * Load Resource Values,
    * Layout Inflation,
    * Start an Activity,
    * Show a Dialog,
    * Start a Service,
    * Bind to a Service,
    * Send a Broadcast,
    * Register BroadcastReceiver.

    
Activity class extends from "ContextThemeWrapper" which extends "ContextWrapper" and that one extends "Context". So we can use "this" to access the context in activity or ClassName wherever necessary. 
    

There are mostly 3 main methods to access Context : 
    
 getContext() : returns the context of activity of which its linked
 getApplicationContext() : returns the context of application which has all the acitivities running inside.
 getBaseContext() : Its related to ContextWrapper which is created around already existing context and allow us to modify its behaviour. 
    

So as we can see the context is tied to its component lifecycle and so we should consider before choosing one otherwise its could lead us to memory leaks.

 

The main difference between Application and Activity Context is that Application Context is not related to UI. That means we shouldn't use application context for inflate a layout, start activity nor show an dialog.

About Author

Author Image
Bipin Tiwari

Bipin is a highly skilled Android developer with extensive professional experience in creating innovative and efficient mobile applications. He possesses proficiency in programming languages such as Java and Kotlin, along with a deep understanding of Android SDK, design patterns, and best coding practices. Bipin is committed to delivering high-quality code and ensuring exceptional user experiences. With excellent problem-solving skills and the ability to work collaboratively in a team environment, he has made valuable contributions to both client and internal projects, including the development of the Blackbook Travels App and Corniz App.

Request for Proposal

Name is required

Comment is required

Sending message..