I am trying to update the values of SharedPreferences, here is my code:
edit = PreferenceManager.getDefaultSharedPreferences(this).edit(); e
Try like this,
public SharedPreferences prefs; SharedPreferences.Editor editor = prefs.edit(); editor.putString(Settings.PREF_USERNAME+"", txtuser); editor.putString(Settings.PREF_PASSWORD+"", entered_name); editor.commit();