我正在开发这个应用程序,我有一个EditText
字段,您可以在其中编写一些内容,然后将其保存并添加到列表(TextView
)中。EditText
我以这种方式保存的内容:
saved += "*" + editTextFelt.getText().toString() + ". \n";
saved
是一个String
。一切正常,我什至可以重新加载应用程序,它仍然显示在TextView
. 为什么?
代码:初始化方法()
sp = getSharedPreferences(fileName, 0);
betaView = (TextView)findViewById(R.id.betaTextView);
我有一个发送文本的按钮,就像:
public void onClick(View v) {
switch(v.getId()){
case R.id.btnSend:
saved += "*" + editTextFelt.getText().toString() + ". \n";
SharedPreferences.Editor editor = sp.edit();
editor.putString("SAVED", saved);
editor.commit();
betaView.setText(sp.getString("SAVED", "Empty"));