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

Is there a way to get the current Context instance by using a static method?

I'm looking for that way because i hate saving the context instance each time it changes.

share|improve this question
6  
Not saving Context is a good idea not just because it is inconvenient, but more because it can lead to huge memory leaks! – Vikram Bodicherla Apr 30 '12 at 5:35
@VikramBodicherla Yes, but the answers below assume that we are talking about the application context. So, memory leaks are not an issue, but the user should only use these solutions where that is the correct context to use. – Tom Mar 31 at 17:58

8 Answers

up vote 241 down vote accepted

Do this

In Android Manifest file declare following

<application android:name="com.xyz.MyApplication">

</application>

then write the class

public class MyApplication extends Application{

    private static Context context;

    public void onCreate(){
        super.onCreate();
        MyApplication.context = getApplicationContext();
    }

    public static Context getAppContext() {
        return MyApplication.context;
    }
}

Now every where call MyApplication.getAppContext() to get your application context statically.

share|improve this answer
17  
Great, but be sure to call super.onCreate()! – Stuck Jun 14 '11 at 0:41
10  
Is there any downside to this method? This seems like cheating. (A hack?) – jjnguy Jul 7 '11 at 2:32
18  
The downside is that there is no guarantee that the non-static onCreate() will have been called before some static initialization code tries to fetch your Context object. That means your calling code will need to be ready to deal with null values which sort of defeats the whole point of this question. – Melinda Green Oct 19 '11 at 2:10
2  
Also maybe.. should we declare this static context variable as volatile? – Vladimir Sorokin Mar 31 '12 at 15:57
4  
This does not seems to work inside a library project. – nerith Sep 26 '12 at 16:46
show 16 more comments

No, I don't think there is. Unfortunately, you're stuck calling getApplicationContext() from Activity or one of the other subclasses of Context. Also, this question is somewhat related.

share|improve this answer
12  
Also, there is a good article on the Android Developers' site about avoiding memory leaks by ensuring you use the appropriate Context objects: developer.android.com/resources/articles/… – Christopher Jan 5 '10 at 4:06
8  
The right link to the article: android-developers.blogspot.co.il/2009/01/… – Tal Weiss Jul 4 '12 at 14:47

Depends on what you are using the context for, I can think of at least one disadvantage to that method:

If you are trying to create an AlertDialog with AlertDialog.Builder, the Application context won't work. I believe you need the context for the current Activity...

share|improve this answer
That's right. If you use the application context for that, you may see your dialog hidden under foreground activities. – Nate Aug 23 '11 at 7:38

If you're open to using RoboGuice, you can have the context injected into any class you want. Here's a small sample of how to do it with RoboGuice 2.0 (beta 4 at time of this writing)

import android.content.Context;
import android.os.Build;
import roboguice.inject.ContextSingleton;

import javax.inject.Inject;

@ContextSingleton
public class DataManager {
    @Inject
    public DataManager(Context context) {
            Properties properties = new Properties();
            properties.load(context.getResources().getAssets().open("data.properties"));
        } catch (IOException e) {
        }
    }
}
share|improve this answer

Here is an undocumented way to get an Application (which is a Context) from anywhere in the UI thread. It relies on the hidden static method ActivityThread.currentApplication(). It should work at least on Android 4.x.

try {
    final Class<?> activityThreadClass =
            Class.forName("android.app.ActivityThread");
    final Method method = activityThreadClass.getMethod("currentApplication");
    return (Application) method.invoke(null, (Object[]) null);
} catch (final ClassNotFoundException e) {
    // handle exception
} catch (final NoSuchMethodException e) {
    // handle exception
} catch (final IllegalArgumentException e) {
    // handle exception
} catch (final IllegalAccessException e) {
    // handle exception
} catch (final InvocationTargetException e) {
    // handle exception
}

Note that it is possible for this method to return null, e.g. when you call the method outside of the UI thread, or the application is not bound to the thread.

It is still better to use @RohitGhatol's solution if you can change the Application code.

share|improve this answer
I used the above method KennyTM, but sometimes the method returns null. Is there some other alternative to this ? Like if we get a null here, we can retrieve the context from elsewhere. In my case, onCreate() of Application is not called. But the above method gets called before it. Plzzz help – AndroidGuy Mar 25 at 13:27

I think you need a body for the getAppContext() method:

public static Context getAppContext()
   return MyApplication.context; 
share|improve this answer

I just released a jQuery inspired framework for Android called Vapor API that aims to make app dev simpler.

The central $ facade class maintains a WeakReference (link to awesome Java blog post about this by Ethan Nicholas) to the current Activity context which you can retrieve by calling:

$.act()

A WeakReference maintains a reference without preventing the GC reclaiming the original object, so you shouldn't have a problem with memory leaks.

The downside of course is that you run the risk that $.act() could return null. I have not come across this scenario yet though so it's perhaps just a minimal risk, worth mentioning.

You can also set the context manually if you are not using VaporActivity as your Activity class:

$.act(Activity);

Also, much of the Vapor API framework uses this stored context inherently which might mean you needn't store it yourself at all if you decide to use the framework. Check out the site for more info and samples.

Hope that helps :)

share|improve this answer

You can use the following :

MainActivity.this.getApplicationContext();

EDIT:

MainActivity.java:

...
public class MainActivity ... {
    static MainActivity ma;
...
    public void onCreate(Bundle b) {
         super...
         ma=this;
         ...

any other class:

public ...
    public ANY_METHOD... {
         Context c = MainActivity.ma.getApplicationContext();
share|improve this answer
This only works if you are inside an inner class, which is hardly the case in the OP. – Richard J. Ross III May 2 at 19:59
check my edit ... – barwnikk May 3 at 22:38

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.