difference and when to use getApplication(), getApplicationContext(), getBaseContext() and someClass.this

60,597

Solution 1

Toast and Intent, both requires reference to context. And getApplication, getApplicationContext, LoginActivity.this and getBaseContext, they all offer reference to the context.

Now the thing confuses is the declaration of different contexts and their specific-usage. To make things simple, you should count two types of context available in the Android framework.

  1. Application Context
  2. Activity Context

Application context is attached to the application's life-cycle and will always be same throughout the life of application. So if you are using Toast, you can use application context or even activity context (both) because a toast can be raised from anywhere with in your application and is not attached to a window.

Activity context is attached to the Activity's life-cycle and can be destroyed if the activity's onDestroy() is raised. If you want to launch a new activity, you must need to use activity's context in its Intent so that the new launching activity is connected to the current activity (in terms of activity stack). However, you may use application's context too to launch a new activity but then you need to set flag Intent.FLAG_ACTIVITY_NEW_TASK in intent to treat it as a new task.

Now referring to your cases:

LoginActivity.this though its referring to your own class which extends Activity class but the base class (Activity) also extends Context class, so it can be used to offer activity context.

getApplication() though its referring to Application object but the Application class extends Context class, so it can be used to offer application context.

getApplicationContext() offers application context.

getBaseContext() offers activity context.

Tips: Whenever you need to manipulate Views then go for Activity-Context, else Application-Context would be enough.

Solution 2

The answer by Waqas is very clear and complete, however I'd like to further clarify the difference between using this vs. getBaseContext(), or getApplication() vs. getApplicationContext(). Both Activity and Application extend not Context itself, but ContextWrapper, which is a

"Proxying implementation of Context that simply delegates all of its calls to another Context".

That "real" context is what you get by using getBaseContext().

So although this (for Activity) and getBaseContext() both give the activity context, they

  • (a) do not refer to the same object (this != getBaseContext()) and
  • (b) calling context through this is slightly less efficient, as the calls go through an extra level of indirection. I doubt it makes any practical difference, though.

The same logic applies to getApplication() vs. getApplicationContext().

Solution 3

LoginActivity.this 

the above line is an Activity which is obeveously a Context.. this is used when you create some AlertDialogs... At some places its compulsory that you use Activity Context...

getApplication()

Same here the make text method needs Context and Application itself implements Context

getApplicationContext()

this is most preferred way since this Context lives untill Application shuts down.

getBaseContext()

this Context is available to widgets and Views..

But All of them gives a Context object and nothing else..

Share:
60,597
Pheonix7
Author by

Pheonix7

student (computer network engineering)

Updated on December 18, 2020

Comments

  • Pheonix7
    Pheonix7 over 3 years

    I'm new to android and I'm trying to understand the difference between getApplication(), getApplicationContext(), getBaseContext(), getContext() and someClass.this and especially when to use the these methods in the following code lines:

    When I launch a toast what is the difference between these and in which cases to I use them?

    Toast.makeText(LoginActivity.this, "LogIn successful", Toast.LENGTH_SHORT).show();
    Toast.makeText(getApplication(), "LogIn successful", Toast.LENGTH_SHORT).show();
    Toast.makeText(getApplicationContext(), "LogIn successful", Toast.LENGTH_SHORT).show();
    Toast.makeText(getBaseContext(), "LogIn successful", Toast.LENGTH_SHORT).show();
    

    same with intents:

    Intent intent = new Intent(getApplicationContext(), LoginActivity.class);
    Intent intent = new Intent(MenuPagina., LoginActivity.class);
    Intent intent = new Intent(getBaseContext(), LoginActivity.class);
    Intent intent = new Intent(getApplication(), LoginActivity.class);
    
  • Pheonix7
    Pheonix7 about 12 years
    so in a toast message or when creating an intent, they all have the same effect eventhough using getApplicationContext() is the most correct?
  • Pheonix7
    Pheonix7 about 12 years
    so if i get it right, someClass.this, getBaseContext and getContext() are activity contexes while getApplicationContext() and getApplication() are application contexes?
  • ChuongPham
    ChuongPham over 11 years
    As far as getBaseContext() is concerned, Google's Android Developers suggested this: "Don't use getBaseContext(), just use the Context you have." So, in effect, they suggest you use this for Activities.
  • ChuongPham
    ChuongPham over 11 years
    @Hassan Samii: For Toast, you can use getApplicationContext() for all situation, but it's preferable that you use this when making Toast in an Activity.
  • committedandroider
    committedandroider over 9 years
    context is just information about an environment right?
  • waqaslam
    waqaslam over 9 years
    Yes, its like the sandbox that hosts the application
  • waqaslam
    waqaslam over 9 years
    @committedandroider because activity context contains extra info for the chosen theme, so when views are created in code then the correct theme will be applied automatically. For more info, you may read this
  • q126y
    q126y almost 8 years
    this is the most clear explanation of getBaseContext I found on the Internet. Thanks!!
  • Bhuro
    Bhuro over 7 years
    @waqaslam referring to android sdk Classes, Context -> ContextWrapper -> 1.Application & 2.ContextThemeWrapper -> Activity; and getBaseContext() is method of ContextWrapper, so getBaseContext() offers activity context. as well as Application Context too...isn't that?
  • hannojg
    hannojg about 6 years
    lol, what is about the WindowManager$BadTokenException that is raised once you tried to call a toast from a finished activity? This literally means that the toast is attached or am I wrong? Or is there a difference between saying "
  • waqaslam
    waqaslam about 6 years
    @HannoGödecke that means you are trying to show a toast using the context of activity whose window is not alive anymore (or finishing). I would suggest you to use application's context for things like toasts.
  • hannojg
    hannojg about 6 years
    @waqaslam okay, but isn`t that in contradiction to saying "...or even activity context because a toast can be raised from anywhere within your application and is not attached to a window"? Because when I am using an activity instance it gets more or less attached to a window?
  • waqaslam
    waqaslam about 6 years
    That statement is referred to the use of toast as asked by OP in his example code. But when the activity context is destroyed then there's no point in using its context otherwise exception will be thrown in logs. You can show toasts from activity-context as long as onDestroy is not called (or the activity is not killed), otherwise stick to application-context for this purpose since it's single instance throughout the application.