When you set general preferences like below ...
public static final String PREFS_HI = "MyPrefsFile";
Is it possible to access it from other actions, as usual?
SharedPreferences settings = getSharedPreferences(PREFS_HI, 0);
Or is there something unique that you have to do to access the settings?
source
share