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)?
<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