gpt4 book ai didi

java - 如何在 TextView 中显示 SharedPreferences 字符串?

转载 作者:行者123 更新时间:2023-12-02 02:39:59 26 4
gpt4 key购买 nike

我有一个问题,我已经在 EditText 和 Button 的帮助下完成了在 SharedPreferences 中保存字符串所需的所有代码,但我不知道如何在 TextView 中永久检索和显示它,下面我有xml 和 java 代码。

<EditText
android:id="@+id/edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/hint"
android:layout_gravity="center"/>

<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button"
android:layout_gravity="center"/>

<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/empty"
android:layout_gravity="center" />


public class MainActivity extends AppCompatActivity {

EditText editt;
Button btn;
SharedPreferences sharedpref;
TextView textv;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

editt = (EditText) findViewById(R.id.edit);
btn = (Button) findViewById(R.id.btn);
sharedpref = getSharedPreferences("name1",MODE_PRIVATE);

btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String str = editt.getText().toString();
SharedPreferences.Editor editor = sharedpref.edit();
editor.putString("name1",str);
editor.apply();
}
});
textv = (TextView) findViewById(R.id.text1);
}

最佳答案

很简单:

// get the saved string from shared preferences
String name1 = sharedpref.getString("name1", "default value");
// set reference to the text view
textv = (TextView) findViewById(R.id.text1);
// set the string from sp as text of the textview
textv.setText(name1);

将这些行放入新方法中,例如 updateNameTextView(),并在 onCreate 和点击监听器中调用它。

关于java - 如何在 TextView 中显示 SharedPreferences 字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45662216/

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