Start a Project

What is Context in Android Application?

This is an abstract class whose implementation is provided by the Android system. It allows access to application-specific resources and classes, as well as up-calls for application-level operations such as launching activities, broadcasting and receiving intents, etc. Context used in android application development everywhere and wrong use of it leads to memory leaks in the application.

 

Application Context Vs Activity Context

They are both the instance of Context class but the application context tied to the lifecycle of application and activity context tied to the lifecycle of activity.

Examples:

  1. If you have to create a singleton object for your application and that object needs a context, always pass the application context.
  2. If you pass the activity context in singleton object which created for the application, it will lead to the memory leak as it will keep the reference to the activity and activity will not be garbage collected. In case, when you have to initialize a library in an activity, always pass the application context.

When to use application context in the application starting Service, send a broadcast, loading a resource value. In most cases, use the Context directly available to you from the enclosing component you’re working within.

Exit mobile version