android - Reading Old Values From SharedPreferences File X-Application -
I create and write a SharedPreferences file to store configuration information from an application like this:
Public Zero Set Custom Sense (Last Reference Reference ...) {if (prefs == null || editor == null} {prefs = context.getSharedPreferences ("prefs", Context.MODE_WORLD_READABLE + Context.MODE_WORLD_WRITEABLE ); Editor = prefs.edit (); } Editor.putString ("custom", info); // It can change the first set value editor. Application (); // Backups Preferences file execCommand (copyToBackup); ExecCommand (mainFixPerm); ExecCommand (bakFixPerm); Activity.finish (); } Public Zero execCommand (string [] arg0) {try {final process pr = Runtime.getRuntime (). Exec (arg0); Final interval retval = pr.waitFor (); If (Rate! = 0) {Log D. ("Error:", string.value (retal)); I have been reading that information: Custom (last references app contact) obtained with a static string string Throws NameNotFoundException {context = appContext.createPackageContext ("com.example.settings", 0); Prefs = context.getSharedPreferences ("Prefs", Context.MODE_WORLD_READABLE + Context.MODE_WORLD_WRITEABLE); Return prefs.getString ("custom", Empty); }
My problem is not that I can not get the file, but the price is not up-to-date when read by another application .
After debugging the first application, I can see that saving the new configuration in the file is working properly, but when the second application restarts, this update displays the configuration otherwise it may be used for old values Continues to read.
I now see when reading about shared pendants
"irreversible application to the object returned by various methods obtained."
< / Blockquote> But every time I am reading the value from the second version of the file, I start the prefix again, so I'm dragging it as something new right? I'm not sure that this is the same matter and how to go about that aspect.
Thank you!
Note: The code I have posted is deemed to be from my actual application only keeping parts related to this issue.
I need to add context to the top of the other two requirements. MODE_MULTI_PROCESS Which is only available in the new API.
Comments
Post a Comment