Guest User

Untitled

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public void savePrefrences(String key, String value)
  2. {
  3. SharedPreferences prefs = SynergyApplication._context.getSharedPreferences(SynergyApplication._context.getApplicationContext().getPackageName(), 0);
  4. prefs.edit().putString(key, value).commit();
  5. }
  6.  
  7. public String getPrefrences(String key)
  8. {
  9. SharedPreferences prefs = SynergyApplication._context.getSharedPreferences(SynergyApplication._context.getApplicationContext().getPackageName(), 0);
  10. return prefs.getString(key, "");
  11. }
Add Comment
Please, Sign In to add comment