你应该在更新它的值之前删除旧的SharedPreference吗...就像这样:
Editor.remove("KEY1");//remove old value
Editor.putString("KEY1", newValue);//same key, new value
Editor.apply();
或者
Editor.putString("KEY1", newValue);//just add new value
Editor.apply();
只是覆盖旧数据而没有后果?
答案 0 :(得分:1)
不,旧值将被覆盖。