Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I couldn't find a satisfying answer to this, so here we go: what's the deal with Activity/Service.getApplication and Context.getApplicationContext?

In our application, both return the same object. In an ActivityTestCase however, mocking the application will make getApplication come back with the mock, but getApplicationContext will still return a different context instance (one injected by Android). Is that a bug? Is it on purpose?

I don't even understand the difference in the first place. Are there cases outside a test suite where both calls may come back with different objects? When and why? Moreover, why is getApplication defined on Activity and Service, but not on Context? Shouldn't there always be a valid application instance available from anywhere?

share|improve this question
2  
Nice question. The testing stuff is a bit of a mystery (as you well know). But I wonder if any difference manifests itself in these two method calls if you don't explicitly create an Application object in your app. – Christopher Feb 16 '11 at 18:12

4 Answers

up vote 92 down vote accepted

Very interesting question. I think it's mainly a semantic meaning, and may also be due to historical reasons.

Although in current Android Activity and Service implementations, getApplication() and getApplicationContext() return the same object, there is no guarantee that this will always be the case (for example, in a specific vendor implementation).

So if you want the Application class you registered in the Manifest, you should never call getApplicationContext() and cast it to your application, because it may not be the application instance (which you obviously experienced with the test framework).

Why does getApplicationContext() exists in the first place ?

getApplication() is only available on the Activity class and in the Service class, whereas getApplicationContext() is declared in the Context class.

That actually means one thing : when writing code in a broadcast receiver, which is not a context but is given a context in its onReceive method, you can only call getApplicationContext(). Which also means that you are not guaranteed to have access to your application in a BroadcastReceiver.

When looking at the Android code, you see that when attached, an activity receives a base context and an application, and those are different parameters. getApplicationContext() delegates it's call to baseContext.getApplicationContext().

One more thing : the documentation says that it most cases, you shouldn't need to subclass Application:

There is normally no need to subclass Application. In most situation, static singletons can provide the same functionality in a more modular way. If your singleton needs a global context (for example to register broadcast receivers), the function to retrieve it can be given a Context which internally uses Context.getApplicationContext() when first constructing the singleton.

I know this is not an exact and precise answer, but still, does that answer your question?

share|improve this answer
I guess that's as close as we get, thanks for investigating! – Matthias Jul 20 '11 at 12:39
great research. thanks! – Ron Feb 18 at 13:37

Compare getApplication() and getApplicationContext().

getApplication returns an Application object which will allow you to manage your global application state and respond to some device situations such as onLowMemory() and onConfigurationChanged().

getApplicationContext returns the global application context - the difference from other contexts is that for example, an activity context may be destroyed (or otherwise made unavailable) by Android when your activity ends. The Application context remains available all the while your Application object exists (which is not tied to a specific Activity) so you can use this for things like Notifications that require a context that will be available for longer periods and independent of transient UI objects.

I guess it depends on what your code is doing whether these may or may not be the same - though in normal use, I'd expect them to be different.

share|improve this answer
5  
but an Application is a Context (it inherits from it), and at runtime, both methods return the same instance. So what's the difference? – Matthias Feb 16 '11 at 16:57
2  
The difference is the scope. Your Application context will be valid far longer than, say, an Activity context because the activity may only be in use for a very short time, while your Application may consist of many Activities. Your Activity Context will be valid for at least as long as the duration that begins when the first activity is started and ends when the last activity. They are all Contexts, but one is longer lasting and doesn't change, but others are short-lived, and different instances may have different Contexts. – RivieraKid Feb 16 '11 at 17:07
1  
I think you may be misreading my question. I'm not asking for the difference between an Activity context and an Application context. I'm pondering the difference between Application (which is the global, unique application context) and whatever getApplicationContext returns. The latter was in fact non-functional before Android 1.6; it used to always return null. – Matthias Feb 16 '11 at 17:11
@Matthias In my opinion it is still relevant. Context is injected (implemented) by Android system itself, while Application inherits and extends Context. Application class can be easily mocked (as said by you) then isn't it a safe bet that it shows that Application class does some "magic" (in test project) to achieve it, possibly ignoring injected Context? – Audrius Feb 16 '11 at 17:34
2  
Come again? I'm sorry, I still don't see how that answers my question. – Matthias Feb 16 '11 at 17:45
show 2 more comments

It seems to have to do with context wrapping. Most classes derived from Context are actually a ContextWrapper, which essentially delegates to another context, possibly with changes by the wrapper.

The context is a general abstraction that supports mocking and proxying. Since many contexts are bound to a limited-lifetime object such as an Activity, there needs to be a way to get a longer-lived context, for purposes such as registering for future notifications. That is achieved by Context.getApplicationContext(). A logical implementation is to return the global Application object, but nothing prevents a context implementation from returning a wrapper or proxy with a suitable lifetime instead.

Activities and services are more specifically associated with an Application object. The usefulness of this, I believe, is that you can create and register in the manifest a custom class derived from Application and be certain that Activity.getApplication() or Service.getApplication() will return that specific object of that specific type, which you can cast to your derived Application class and use for whatever custom purpose.

In other words, getApplication() is guaranteed to return an Application object, while getApplicationContext() is free to return a proxy instead.

share|improve this answer
Nice answer, that makes perfect sense to me. – Matthias Nov 2 '12 at 18:15

To answer the question, getApplication() returns an Application object and getApplicationContext() returns a Context object. Based on your own observations, I would assume that the Context of both are identical (i.e. behind the scenes the Application class calls the latter function to populate the Context portion of the base class or some equivalent action takes place). It shouldn't really matter which function you call if you just need a Context.

share|improve this answer
8  
I love assumptions – Pacerier Feb 12 '12 at 16:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.