I have a PreferenceActivity that manage my SharedPreferences xml file.
But I want to manage that xml file on my own (load, change, save).
Can I force PreferenceActivity to not save automatically my Settings/SharedPreferences ?
I want to use that Activity only to bring my settings simple to View und get the user changes when the activity lost that focus. After that, I manually save that changes with SharedPreferences.
You could set preference’s attribute android:persistent=”false”,and then it will not stores its value to the shared preferences.