I am trying to remove my SharedPreferences , but it does not work: size not set to 0, as I expected.
SharedPreferences sp = context.getSharedPreferences(name, mode); SharedPreferences.Editor e = sp.edit(); e.clear(); e.commit(); Map<String, ?> map = sp.getAll(); int size = map.size();
Any suggestions?
private static String name = "ABC_PREFS"; private static int mode = Context.MODE_PRIVATE;
source share