【发布时间】:2017-08-13 15:55:48
【问题描述】:
我有一个问题,我已经在 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);
}
【问题讨论】:
标签: java android textview sharedpreferences