I need to get a reference to the shared prefs from inside an abstract class called A that does not extend anything.
I cannot pass a Context object to this class to get the shared prefs because being abstract, I don't instantiate it. I created class A to be extended by other POJOs that share a single attribute, which is the uuid. The UUID is generated once in the app on its first run, which is why I store it in the shared prefs. In class A's constructor, I'm hoping to set the uuid based on what is in the shared prefs.
public abstract class A {
private String uuid;
public A() {
// this is how I'm hoping to use the shared preferences
this.uuid = sharedPrefs.getString("KEY_UUID", "null");
}
// getter and setter
}
One suggestion I found is to extend Application, say in a class called App, and include an attribute android:name=".App" in the <application> tag in the manifest. I imagine App will be written like this:
public class App extends Application {
private static App app;
public void onCreate() {
this.app = this;
}
public static App getApp() {
return app;
}
}
...so that from inside class A, I can do this:
this.uuid = App.getApp().getSharedPreferences("prefs_name.txt", Context.MODE_PRIVATE).getString("KEY_UUID", "null");
However, doesn't the non-final static field app lose its reference to the App and become null when Android kills off the process or when the phone restarts? How can I get a reference to the shared prefs without using this method? Or should I just manually write the UUID to a file?