Skip to content

Instantly share code, notes, and snippets.

@cioccarellia
Created March 6, 2018 15:16
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/fe151c4d64a7f4fc28a769976dab166b to your computer and use it in GitHub Desktop.
Save cioccarellia/fe151c4d64a7f4fc28a769976dab166b to your computer and use it in GitHub Desktop.
public static final String Prefs = "MyPrefsFile";
SharedPreferences prefs = this.getSharedPreferences(Prefs, Context.MODE_PRIVATE);
String user = prefs.getString("name", null);
int userId = prefs.getInt("id", null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment