Stimmt in einer Android-App der folgende Ansatz nicht: public class MyApp extends android.app.Application { private static MyApp instance; public MyApp() { instance = this; } public static Context getContext() { return instance; } } und überall dort übergeben (zB SQLiteOpenHelper), wo...