I'm new to android and Java and am currently working on an android project. I'm trying to save Name and Number using "EditText" and Shared Preference. I tried typing some codes down, but it doesn't seems to work.
- Code: Select all
protected void loadPreferences(){
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
Editor e = sp.edit();
e.putBoolean(PREFS_SETTINGS, true);
e.commit();
}
protected void saveActivityPreferences(){
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
sp.getBoolean(PREFS_SETTINGS, true);
}
When I select the Save button. It cannot seems to save the Name.
Thank you. Greatly appreciate.



