I have a class extending the Application class which I use for some global variables and methods.
That works fine in my activities and fragments, however now I would like to call a non static method of that class within my class which extends a CursorAdapter.
The tricky thing is that I could not find a way to retrieve a reference to the Application extended class from the CursorAdapter. Is there any way to do so?