Tuesday, March 20, 2012

Shared Preference

 SharedPreferences

public abstract SharedPreferences getSharedPreferences (String name, int mode)
Since: API Level 1

Retrieve and hold the contents of the preferences file 'name', returning a SharedPreferences through which you can retrieve and modify its values. Only one instance of the SharedPreferences object is returned to any callers for the same name, meaning they will see each other's edits as soon as they are made.
Parameters

name     Desired preferences file. If a preferences file by this name does not exist, it will be created when you retrieve an editor (SharedPreferences.edit()) and then commit changes (Editor.commit()).

mode     Operating mode. Use 0 or MODE_PRIVATE for the default operation, MODE_WORLD_READABLE and MODE_WORLD_WRITEABLE to control permissions. The bit MODE_MULTI_PROCESS can also be used if multiple processes are mutating the same SharedPreferences file. MODE_MULTI_PROCESS is always on in apps targetting Gingerbread (Android 2.3) and below, and off by default in later versions.


Activity 1

   SharedPreferences Prefs = this.getSharedPreferences("myPrefs", MODE_WORLD_READABLE);
   SharedPreferences.Editor prefsEditor = Prefs.edit();
    prefsEditor.putString(MY_NAME, "Hai");
    prefsEditor.commit();


Activity 2

   SharedPreferences myPrefs = this.getSharedPreferences("myPrefs", MODE_WORLD_READABLE);
  String prefName = myPrefs.getString(MY_NAME, "nothing");

No comments :

Post a Comment