I have a preferenceActivity in which I have many checkBoxPreferences. The checkBoxPreference is suppose to save the the default shared preferences file, and then be called again when I open the app in order to update the UI.

This does not happen like it's suppose to. If I close the app and open it back up, my values remain like they are suppose to, but if I use task manager to end the app or if I power cycle the phone (when the app is not running) then the defaultValues are called again.

So, I created a SharedPreference in my onResume() to test it.

SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());

I then check to see if there is a key in that sharedpreference.

pref.contains("myCheckBoxPreference");

When I close out and open it back up, it returns true. if I close with the task manager or power cycle the phone off and on, then that returns false.

So, I tried manually setting the SharedPreference

SharedPreferences.Editor editor = pref.edit();
editor.putBoolean("myCheckBoxPreference", myCheckBoxPreference.isChecked());
editor.commit();

and then I called that when the checkboxpreference value changed. I also tried calling it in onStop and onPause. Still, if I close the app and open it back up, pref.contains returns true, but if I power cycle the phone off and back on, it returns false.

So I then tried using a SharedPreferences file.

In the class declaration:

public static final String PREFS = "prefs";

And in the onResume():

SharedPreferences pref = this.getSharedPreferences(PREFS, 0);

Same behavior, pref.contains still returns true if I just close the app and open it back up, but it returns false if I power the phone off and back on.

I then tried changing the key value of myCheckBoxPreference to something that did NOT match the xml key for the CheckBoxPreference, and it still had the same effect.

And I uninstalled the application from the phone, then powered the phone off and back on, and then re-installed, and it still has the same effect.

Thank you for any help.

link|improve this question

I would be interested to see the output of logcat while you are testing this, an exact test case written entirely in onCreate that simply opens the preferences and saves a value, then reads it back the next time you start the program, and what the contents of your MYPREFS constant is. Are you really not able to read the preferences back, or are they simply not appearing in the DialogPreference GUI when you launch your PreferenceActivity subclass? – Tom Dignan Jun 28 '11 at 0:55
Well, I would post that, but I'm really new to android and honestly don't know how to use the logcats, and I just make Toast notifications to tell me if things are right. (and I feel that's more useful anyway, because I can easily view toasts while the app is running. But, with the toast notifications, it says the boolean value is false, when I previously saved it as true. And that happens when toasting from the main activity and from another activity that calls the sharedpreference. And it doesn't seem an issue with GUI updating because it works before power cycling the phone. – Jakar Jun 29 '11 at 4:02
feedback

4 Answers

I encountered a possibly similar problem on a Samsung Galaxy S, where the permissions for the preferences XML file had somehow changed/corrupted.

The log revealed some host process was failing to read the file, causing all the settings to reset to their defaults. I don't recall the exact error message, but it was along the lines of "permission denied for /path/to/preferences/file.xml".

The resolution for me was to delete the application data through Settings, Applications, Manage Applications, MyApp, Delete data. This deletes the preference file associated with the app and the problem instantly disappeared.

I assumed it was an isolated event, as I've not run into it again on a variety of Android devices (including the Galaxy S II).

link|improve this answer
Odd thing is, when I go to manage applications, "Delete Data" was grayed out AND "Data.......0.00B". The same exact thing is happening for TestProj, but the phone is getting replaced within the next week so I will be able to test it for real soon. – Jakar Jul 1 '11 at 23:30
A common issue on the Galaxy S I believe - a bug where the preference permissions are corrupted. I've had a few users report it. – David Caunt Jul 1 '11 at 23:31
@David-Caunt Good to know that; I was worried I was doing something foolish. – Paul Lammertsma Jul 1 '11 at 23:36
I've seen it reported on a few forums, and reinstallation usually fixes it. No word from Samsung but their code has been slated by many developers. – David Caunt Jul 1 '11 at 23:49
I had a user w/ a similar issue on a Samsung Infuse getting this error : Attempt to read preferences file /dbdata/databases/com.munzee.android.client/shared_prefs/MunzeePrefs.xml without permission. I tried to change the MunzeePrefs.xml file name to be the UID, but it looks like the permissions are set on the FQN in the path.. Any suggestions on how to fix this? Uninstalling/reinstalling the app is not working. Suggested the only solution to user may be factory reset. Any idea where to report bugs to Samsung? – Chrispix Oct 29 '11 at 3:22
show 1 more comment
feedback
up vote 4 down vote accepted

I just solved it, I'm pretty sure. There's no code error on my part, and there is no issue with my app whatsoever (I don't believe, anyway.)

I created a new project called "testproj", then I copied ALL the code from my settings PreferenceActivity, pasted it into the TestprojActivity, and I copied the code from the xml it relied on, then pasted that into the main.xml of TestProj.

I then installed TestProj on the Samsung Captivate, changed the settings around, cleared the ram through RAM management (a function of the custom ROM I have), and the settings stuck. I then power cycled the phone and the settings were still there like I'd configured them.

They stayed both when I manually set them using:

PreferenceManager.getDefaultSharedPreferences();

and without manually saving them to the SharedPreferences.

Since it is my fiance's phone, I haven't tried it yet, but I assume a Factory Data reset would fix it completely EDIT: I was able to test on both a new Samsung Captivate and a Samsung infuse, and it worked.

I wasted a lot of my time trying to figure this out, and I hope it helps someone else. :)

link|improve this answer
Sounds like Paul's answer below is relevant. – David Caunt Jul 1 '11 at 23:36
I wasn't aware that the Samsung Captivate is a Samsung Galaxy S variant. It seems like David Caunt is right about it being an issue on that model. – Paul Lammertsma Jul 1 '11 at 23:38
feedback

On the client's main test device I came across the very same issue. The Device used is a Samsung Galaxy S with SDK level 8 (2.2.1).

The strange behavior is that either SharedPreferences are not saved, or, as after a factory reset, they're too persistent, that is to say they are not deleted after having reinstalled the application.

Due to the current distribution of 2.2.x, and the number of Samsung Galaxy S devices sold being several millions, the probability of an occurrence of this issue is significant.

So it can be considered as crucial to implement a workaround for saving preferences.

For collecting detailed characteristics to isolate this workaround in a sharp-edged way, could everyone who is also facing that issue please provide the corresponding kernel version (System.getProperty("os.version") here?

I was thinking of something like this:

// !! I know that 2.6.32.9 is not yet correct. This would be a false positive !!
if ((System.getProperty("os.version").startsWith("2.6.32.9"))
    && (android.os.Build.DEVICE.contains("GT-I9000")))
    useInternalStorage();
else
    useSharedPreferences();

I can post the real code here also once it's ready and someone is interested.


EDIT: some additional information:

Devices facing that issue:

    Property                         | Values
    ---------------------------------+------------------------------------
    Build.DEVICE                     | "GT-I9000T"
    Build.VERSION.INCREMENTAL        | "UBJP9"
    Build.VERSION.RELEASE            | "2.2.1"
    Build.VERSION.SDK                | 8
    System.getProperty("os.version") | "2.6.32.9"
    

Similar devices NOT facing that issue:

    Property                         | Values
    ---------------------------------+------------------------------------
    Build.DEVICE                     | "GT-I9000"
    Build.VERSION.INCREMENTAL        | "AOJP4"
    Build.VERSION.RELEASE            | "2.2"
    Build.VERSION.SDK                | 8
    System.getProperty("os.version") | "2.6.32.9"
    

link|improve this answer
The device I use now works, but on your test device, if you call editor.clear().commit() to clear all values for that pref file, then do values save successfully? Also, what happens if you change it so the prefs file just has a different name? I didn't think to try these steps previously, and I no longer have a malfunctioning galaxy s. – Jakar Sep 27 '11 at 3:03
feedback

It is possible to work around the issue of permissions by using sharedUserId which should be the same for any of your signed apps.

http://developer.android.com/reference/android/R.attr.html#sharedUserId

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.