I'm trying to delete my SharedPreferences
, but it's not working: size
is not set to 0 as I would expect.
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;