I have 2 processes in my application. From one process i save data in to SharedPreference. From second process - retrieve. When i retrieve data, i recieve sharedprefernces with old data(i check xml file and see, that currently data in file and data that was recieved are different). It looks like this data was cached. I changed saving methods (commit/apply) but no result. PS: just for example http://pastebin.com/Zx2ffvSg

link|improve this question

50% accept rate
we'd have to see some code to see where the error is – Bill Gary Jan 3 at 17:10
i think that it is not suitable in this situation. I describe simple work with SharedPreference. Maybe there are any "pitfalls" in my situation? – x90 Jan 3 at 17:50
Make sure the key in the key-value pair is the same. – Bill Gary Jan 3 at 20:07
I am sure! Keys are ok. – x90 Jan 3 at 20:17
feedback

1 Answer

up vote 3 down vote accepted

The solution is add to neccesary flags Context.MODE_MULTI_PROCESS flag when open shared preference.

link|improve this answer
obviously, isn't it? :) – x90 Jan 4 at 7:47
You should mark the answer as accepted to improve your accept rate – Kuffs Mar 22 at 14:04
feedback

Your Answer

 
or
required, but never shown

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