Guest User

Untitled

a guest
Jul 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. saveInt(Context context,String fileName, String key, int value){
  2. SharedPreferences sPref = context.getSharedPreferences(fileName, Context.MODE_PRIVATE);
  3. Editor edit = sPref.edit();
  4. edit.putInt(key, value);
  5. edit.apply();
  6. }
Add Comment
Please, Sign In to add comment