I need the default value set in the preferences XML to be available on first run.
In some phones this works, but some other phones (e.g. Samsung) behave very strangely.
In my particular case, the following code:
String key = "@string/timeout_key"
timeout = Integer.valueOf(prefs.getString(key, "10"));
Keeps returning (to timeout) the default value of "10" (passed as the 2nd parameter to prefs.getString()), although the preferences XML specifies:
android:defaultValue="5"
The string "timeout_key" exists and I could verify that it is read correctly.
My "manual workaround" currently is to invoke the settings editor, retype the setting and press OK.
Is there a way to do this programmatically?