Skip to content

Instantly share code, notes, and snippets.

@yanguango
Created May 14, 2011 04:52
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 yanguango/971929 to your computer and use it in GitHub Desktop.
Save yanguango/971929 to your computer and use it in GitHub Desktop.
public class MyApplication extends Application {
private SharedPreferences mPrefs;
@Override
public void onCreate() {
super.onCreate();
mPrefs = PreferenceManager.getDefaultSharedPreferences(this);
}
public String getUsername(){
return mPrefs.getString("username", null);
}
public String getPassword(){
return mPrefs.getString("password", null);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment