Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My first attempt at preferences was without knowledge of PreferenceActivity. So now I have an app that stores all user preferences in a specific preference file.

I want to migrate to using a PreferenceActivity but I also want my users to keep their preferences.

Is there a way to tell my PreferenceActivity to use that specific file for all preferences?

share|improve this question
You could write a method that reads your old preferences and saves them as regular preferences – Maaalte Mar 2 '11 at 15:22
I thought about migration as one solution. But then I can never get rid of the migration code? There is no way to ensure that there are no old versions of my app around. – Yashima Mar 2 '11 at 22:26

3 Answers

up vote 1 down vote accepted

You could read all the preferences at the beginning of your app, and then store them in the Preferences using

Editor e = PreferenceManager.getDefaultSharedPreferences(getBaseContext()).edit();
e.putBoolean("yourPreference", true);
e.putString("yourOtherPreference", "This is the Value");
...
e.commit();

I hope that helps

share|improve this answer
I implemented this variant now even though I initially preferred the renaming of the file idea of Andrew. I never found out how to do the latter however and so I stuck with the obvious. Thanks! – Yashima Mar 3 '11 at 13:29
good, im glad it helped! – raukodraug Mar 3 '11 at 14:22

It may be too late to post this but you can find a nice solution here

http://idlesun.wordpress.com/2011/04/08/how-to-make-preferenceactivity-use-non-default-sharedpreferences/#comment-36

You basically set the name of the default shared preferences file beforehand.

I hope this helps somebody.

Regards.

share|improve this answer
1  
Awesome, this is exactly what I wanted (not the original poster, but had the same problem) – Matt Wolfe Sep 13 '11 at 23:21

Maaalte is correct, what you want to do is onCreate test for the existence of your custom file and if it's there, rename it to standard shared preferences filename.

Another option is to read your old prefs one-by-one and use the shared preferences API to add them as you read them and then delete your old prefs when you are done.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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