I am currently trying to call a method from a utility class that will reference a new cursor created for this utility method. Unfortunately, my new class will not let me cr
A few hints on Context:
Get Context in you View via getContext() and pass it to getContentResolver(context).
getContext()
getContentResolver(context)
Use application-context approach as described here by @apps.
Don't store context inside Activity or Views. This leads to memory leaks.