getApplicationContext(), getBaseContext(), getApplication(), getParent()

AndroidAndroid Context

Android Problem Overview


What is the difference between:

  1. getApplicationContext()
  2. getBasecontext()
  3. getApplication()
  4. getParent()

Can you elaborate with one simple example?

Android Solutions


Solution 1 - Android

getApplicationContext() Application context is associated with the Applicaition and will always be the same throughout the life cycle.

getBasecontext() should not be used, just use Context instead of it which is associated with the activity and could possible be destroyed when the activity is destroyed.

getApplication() is available to Activity and Services only. 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).

getParent() returns object of the activity if the current view is a child..In other words returns the activity object hosting the child view when called within the child.

Solution 2 - Android

getApplicationContext() Application context is associated with the Application and will always be the same throughout the life cycle.

getBasecontext() should not be used, just use Context instead of it which is associated with the activity and can be destroyed when the activity is destroyed.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNikunj PatelView Question on Stackoverflow
Solution 1 - AndroidRaviView Answer on Stackoverflow
Solution 2 - AndroidHarinderView Answer on Stackoverflow