[android-developers] Re: Are SharedPreferences limited in size?

2010-03-03 Thread ko5tik
On Mar 3, 9:11 am, Dianne Hackborn hack...@android.com wrote: There is no limit (except for storage space), but these are currently written as a single XML file for the entire shared preference object, so you don't want to go crazy with how much you put there. If you have a large amount of

Re: [android-developers] Re: Are SharedPreferences limited in size?

2010-03-03 Thread Michael Davey
I don't suppose you can give me a URL to your JSON serializer? That would help me out a lot too... Thanks On 3 Mar 2010, at 12:45, ko5tik wrote: On Mar 3, 9:11 am, Dianne Hackborn hack...@android.com wrote: There is no limit (except for storage space), but these are currently written

[android-developers] Re: Are SharedPreferences limited in size?

2010-03-03 Thread Bob Kerns
Is there something wrong with the one built into the system??? http://developer.android.com/intl/de/reference/org/json/package-summary.html On Mar 3, 4:53 am, Michael Davey frak@gmail.com wrote: I don't suppose you can give me a URL to your JSON serializer?  That would help me out a lot

[android-developers] Re: Are SharedPreferences limited in size?

2010-03-03 Thread Bob Kerns
It's only a single XML file if you use a single shared preference object. You don't actually have to use the default one. If it does simplify your life, you can use this: http://developer.android.com/intl/de/reference/android/content/Context.html#getSharedPreferences(java.lang.String, int) ...to

Re: [android-developers] Re: Are SharedPreferences limited in size?

2010-03-03 Thread Michael Davey
Apart from me not knowing it existed? Probably not ;o) On 3 Mar 2010, at 14:22, Bob Kerns wrote: Is there something wrong with the one built into the system??? http://developer.android.com/intl/de/reference/org/json/package-summary.html On Mar 3, 4:53 am, Michael Davey