我希望我的应用程序将 textView2 保存在共享首选项中。这是我拥有的当前共享首选项代码,用于保存复选框的状态(选中/未选中)。
private boolean getFromSP(String key){
SharedPreferences bifrostPrefs = getApplicationContext().getSharedPreferences("bifrostPrefs", android.content.Context.MODE_PRIVATE);
return bifrostPrefs.getBoolean(key, false);
}
private void saveInSp(String key,boolean value){
SharedPreferences bifrostPrefs = getApplicationContext().getSharedPreferences("bifrostPrefs", android.content.Context.MODE_PRIVATE);
SharedPreferences.Editor editor = bifrostPrefs.edit();
editor.putBoolean(key, value);
editor.commit();
}
我以前从未真正使用过共享偏好,所以我真的不知道如何创建一个新的共享偏好来保存我的 textview2。