gpt4 book ai didi

java - 如何在共享首选项中保存 TextView ?

转载 作者:行者123 更新时间:2023-12-01 18:47:36 38 4
gpt4 key购买 nike

我希望我的应用程序将 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。

最佳答案

你不能。

The SharedPreferences class provides a general framework that allows you to save and retrieve persistent key-value pairs of primitive data types. You can use SharedPreferences to save any primitive data: booleans, floats, ints, longs, and strings.

来自文档 Using Shared Preferences

Al-thought你可以存储TextView的值

//To get stored value
private String getString(String key){
SharedPreferences bifrostPrefs = getApplicationContext().getSharedPreferences("bifrostPrefs", android.content.Context.MODE_PRIVATE);
return bifrostPrefs.getString(key, "");
}

..

//To Save value
private void saveString(String key, String value){
SharedPreferences bifrostPrefs = getApplicationContext().getSharedPreferences("bifrostPrefs", android.content.Context.MODE_PRIVATE);
SharedPreferences.Editor editor = bifrostPrefs.edit();
editor.putString(key, value);
editor.commit();
}
<小时/>

如何使用这些方法

将此代码放在要保存 TextVIew 值的位置

//To save value of TextView
if (!TextUtils.isEmpty(aTextView.getText())) {
saveString("aTextView", aTextView.getText().toString());
}

//To Read and show into TextVIew
aTextView.setText(getString("aTextView"));

关于java - 如何在共享首选项中保存 TextView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17086234/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com