SharedPreference
我的应用程序中保存了以下内容:
editor.putString("strInfName", nameOfInf.getText().toString());
editor.putFloat("dblTollAmount", Float.parseFloat(tollAmount.getText().toString()));
我如何只清除一个变量而不是两个变量?
editor.clear();
会清除所有变量,但我只是想清除strInfName
。
这会起作用吗:
editor.edit().remove("strInfName").commit();