In an Android utility class, I want to get a system preference value in a class, but I don't have the context there, because the class that calls it doesn't have the context either. I've found that for Resources one can use the static Resources.getSystem()
function. Is there any similar way for getting system preferences without context?
My class isn't an activity nor service. It's a utility class. Could give more info if needed.