Android:在更新值之前删除SharedPreference?

时间:2015-07-30 14:13:12

标签: android sharedpreferences

你应该在更新它的值之前删除旧的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();

只是覆盖旧数据而没有后果?

1 个答案:

答案 0 :(得分:1)

不,旧值将被覆盖。