Created
August 12, 2012 01:55
Sharing Shared Preferences between Android Apps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Context myContext = getApplicationContext().createPackageContext | |
("com.cr.sharedprefexampleone", Context.MODE_WORLD_WRITEABLE); | |
SharedPreferences testPrefs = myContext.getSharedPreferences | |
("sharedprefone", Context.MODE_WORLD_READABLE); | |
String prefString = testPrefs.getString("time", "Couldn't find"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SharedPreferences prefs = getApplicationContext(). | |
getSharedPreferences("sharedprefone", Context.MODE_WORLD_READABLE); | |
Editor edit = prefs.edit(); | |
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); | |
Date date = new Date(); // | |
edit.putString("time", dateFormat.format(date)); | |
edit.commit(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After accessing data 1st time in 2nd app, then change the data in 1st app and then again access data in 2nd app is old not latest data.