Context Flashcards

1
Q

Two types of context

A

Application Context and Activity Context

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Application Context

A

Application Context: It is the application and we are present in Application. For example - MyApplication(which extends Application class). It is an instance of MyApplication only.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Activity Context

A

Activity Context: It is the activity and we are present in Activity. For example - MainActivity. It is an instance of MainActivity only.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Application Context in Detail

A

It is an instance that is the singleton and can be accessed in activity via getApplicationContext(). This context is tied to the lifecycle of an application. The application context can be used where you need a context whose lifecycle is separate from the current context or when you are passing a context beyond the scope of activity.

Example Use: If you have to create a singleton object for your application and that object needs a context, always pass the application context.

If you pass the activity context here, 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, not the activity context.

You only use getApplicationContext() when you know you need a Context for something that may live longer than any other likely Context you have at your disposal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Activity Context

A

This context is available in an activity. This context is tied to the lifecycle of an activity. The activity context should be used when you are passing the context in the scope of an activity or you need the context whose lifecycle is attached to the current context.

Example Use: If you have to create an object whose lifecycle is attached to an activity, you can use the activity context.

The app hierarchy looks like the following:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Nearest Context

A

MyApplication [Here we have only Application context present] [Nearest Context is Application Context]
MainActivity1 [Here we have both Activity(MainActivity1) context and Application context present] [Nearest Context is Activity Context]
MainActivity2 [Here we have both Activity(MainActivity2) context and Application context present] [Nearest Context is Activity Context]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

getContext() in ContentProvider

A

This context is the application context and can be used as the application context. You can get it using the getContext() method.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

When to use Application Context?

A

Let’s learn which context to use at which place with an example:

Suppose we have our class MyApplication(which extends the Application class). And, another class MyDB which is Singleton. And MyDB(which is Singleton) needs context. Which context will we be passing?

The answer is Application Context because if we pass the Activity Context (for example MainActivity1), even if MainActivity1 is not in use, the MyDB will be keeping the reference unnecessary which will lead to the memory leaks.

So always remember, in case of Singleton(lifecycle is attached to the application lifecycle), always use the Application Context.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

So, now when to use the Activity Context.

A

Whenever you are in Activity, for any UI operations like showing toast, dialogs, and etc, use the Activity Context.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

TIp

A

Always try to use the nearest context which is available to you. When you are in Activity, the nearest context is Activity context. When you are in Application, the nearest context is the Application context. If Singleton, use the Application Context.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

when not to use getApplicationContext() ?

A

It’s not a complete Context, supporting everything that Activity does. Various things you will try to do with this Context will fail, mostly related to the GUI.
It can create memory leaks if the Context from getApplicationContext() holds onto something created by your calls on it that you don’t clean up. With an Activity, if it holds onto something, once the Activity gets garbage collected, everything else flushes out too. The Application object remains for the lifetime of your process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The Thumb Rule

A

In most cases, use the Context directly available to you from the enclosing component you’re working within. You can safely hold a reference to it as long as that reference does not extend beyond the lifecycle of that component. As soon as you need to save a reference to a Context from an object that lives beyond your Activity or Service, even temporarily, switch that reference you save over to the application context.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly