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

In an Android app, is there anything wrong with the following approach:

public class MyApp extends android.app.Application {

    private static MyApp instance;

    public MyApp() {
    	instance = this;
    }

    public static Context getContext() {
    	return instance;
    }

}

and pass it everywhere (e.g. SQLiteOpenHelper) where context is required (and not leaking of course)?

share|improve this question
8  
Just to elaborate for others implementing this, you can then modify the <application> node of your AndroidManifest.xml file to include the following attribute definition: android:name="MyApp". MyApp needs to be under the same package that your manifest references. – Matt Huggins Sep 20 '10 at 3:50
Why the static? The application instance is always created before anything else. Wherever you are expected to access the application context, it will be passed to you as arguments. This approach may complicate your tests. Static-itis promotes common coupling. – mschonaker Oct 14 '10 at 22:41
1  
AWESOME way to get around the problem of supplying a context to the SQLiteOpenHelper !! I've implemented a singleton "SQLiteManager" and was stuck at "how the F do I get a context to the singleton?" – Someone Somewhere May 4 '11 at 23:22
3  
Just so you know you're returning your application by one of its super interfaces, so if you provided additional methods within MyApp you would not be able to use them. Your getContext() should instead have a return type of MyApp, and that way you can use methods added later, as well as all the methods in ContextWrapper and Context. – Brian Reindel Aug 9 '11 at 1:28
2  
See also goo.gl/uKcFn - it's another reply related to similar post. Better set the static variable in onCreate and not c'tor. – kilaka Oct 31 '11 at 15:44
show 1 more comment

5 Answers

up vote 139 down vote accepted

There are a couple of potential problems with this approach, though in a lot of circumstances (such as your example) it will work well.

In particular you should be careful when dealing with anything that deals with the GUI that requires a Context. For example, if you pass the application Context into the LayoutInflator you will get an Exception. Generally speaking, your approach is excellent: it's good practice to use an Activity's Context within that Activity, and the Application Context when passing a context beyond the scope of an Activity to avoid memory leaks.

Also, as an alternative to your pattern you can use the shortcut of calling getApplicationContext() on a Context object (such as an Activity) to get the Application Context.

share|improve this answer
8  
Thanks for an inspiring answer. I think I'll use this approach solely for the persistence layer (as I don't want to go with content providers). Wondering what was the motivation behind designing SQLiteOpenHelper in a way that expects a Context to be supplied instead of acquiring it from Application itself. P.S. And your book is great! – yanchenko Jun 12 '09 at 16:39
3  
Using the application context with LayoutInflator just worked for me. Must have been changed in the last three years. – Jacob Phillips May 14 '12 at 6:30

In my experience this approach shouldn't be necessary. If you need the context for anything you can usually get it via a call to View.getContext() and using the Context obtained there you can call Context.getApplicationContext() to get the Application context. If you are trying to get the Appication context this from an Activity you can always call Activity.getApplication() which should be able to be passed as the Context needed for a call to SQLiteOpenHelper()

Overall there doesn't seem to be a problem with your approach for this situation, but when dealing with Context just make sure you are not leaking memory anywhere as described on the official Google Android Developers blog

share|improve this answer
1  
The approach you're suggesting is pretty likely to cause the memory leaks the blog post you link to describes. The context returned by the View object will be for the Activity rather than the Application. – Reto Meier Jun 12 '09 at 16:01
1  
Reto - You are correct, I failed to mention that in order to get the Applciaiton context you need to call getApplciationContext() on the context that you get get from View.getContext() as you said in your answer, I am editing now to include that piece of information. Thank you for pointing it out. – snctln Jun 12 '09 at 16:16

You are trying to create a wrapper to get Application Context and there is a possibility that it might return "null" pointer.

As per my understanding, I guess its better approach to call- any of the 2 Context.getApplicationContext() or Activity.getApplication().

share|improve this answer
4  
when should it return null? – Stuck Jun 14 '11 at 1:04
5  
There's no static Context.getApplicationContext() method that I'm aware of. Am I missing something? – Danny Feb 26 '12 at 17:28
I also implement the same approach in my application, but when calling in SQLiteOpenHelper, it returns the null pointer. Any answer for this kind of situation. – ashutosh Jul 11 '12 at 7:33

I like it, but I would suggest a singleton instead:

package com.mobidrone;

import android.app.Application;
import android.content.Context;

public class ApplicationContext extends Application
{
    private static ApplicationContext instance = null;

    private ApplicationContext()
    {
        instance = this;
    }

    public static Context getInstance()
    {
        if (null == instance)
        {
            instance = new ApplicationContext();
        }

        return instance;
    }
}
share|improve this answer
16  
Extending android.app.application already guarantees singleton so this is unnecessary – Vincent Apr 15 '11 at 8:21
6  
What if you want acess from non activity classes? – Maxrunner Sep 21 '11 at 14:00
You shoud set instance in onCreate... not in constructor... – radzio Aug 21 '12 at 20:34

Try

private OnClickListener OutrosListener = new OnClickListener() {
        public void onClick(View v){
            Context context = v.getContext();
            Activity act = (Activity)context;
            ((LinearLayout) act.findViewById(R.id.llyComodosOutros)).setVisibility(View.VISIBLE);

}

};
share|improve this answer

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.