Skip to content

Instantly share code, notes, and snippets.

@cioccarellia
Last active March 6, 2018 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cioccarellia/422a970469115cd9a809fdaf461181b4 to your computer and use it in GitHub Desktop.
Save cioccarellia/422a970469115cd9a809fdaf461181b4 to your computer and use it in GitHub Desktop.
public static final String Prefs = "MyPrefsFile";
SharedPreferences.Editor editor = getSharedPreferences(Prefs, MODE_PRIVATE).edit();
editor.putString("name", "Andrea");
editor.putInt("id", 107);
editor.apply();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment