In my app, some settings can possibly be changed while the PreferenceActivity
is not open, and an issue I'm running into is that addPreferencesFromResource
is called in onCreate
, so say, I open the PreferenceActivity
, then go to another screen from there, then do something that changes the settings, then hit the back key to go back to the PreferenceActivity
, then certain settings have not changed on the layout.
So, how could I re-load all the Preferences
every time onResume
(or onStart()
) is called without duplicating the layout?
edit: This solution will work for API 11 + only.
Im not sure I fully understand your problem, but you could add a call to recreate() into the onResume of the activity which from my understanding has the activity go through the entire lifecycle again.
In order to make sure that you only do this when there is in fact dirty data, I would set a flag in the SharedPreferences that lets your activity know in the onResume() that it needs to be recreated.
public void onResume(){
super.onResume();
SharedPreferences pref = getApplicationContext().getSharedPreferences(Constants.PREFS_NAME, Context.MODE_PRIVATE);
if(pref.getBoolean("isDirtyPrefs", true))
recreate();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With