用户杀死Android应用后保存状态

时间:2018-02-22 10:33:28

标签: android textview save sharedpreferences state

我一直在与我的一些项目挣扎。我需要保存2 TextView个值,以便当用户按下后退按钮或重新启动手机然后返回应用程序时它们就在那里。到目前为止,我已经尝试了很多方法,但不知怎的,它赢了# 39;工作...... 该应用会显示一个TextView,其中包含用户自己输入的'目标。第二个TextView显示多个“光束”,用户自己再次输入。我已经能够在用户旋转屏幕时保留数据,但是在应用程序被杀之后保存数据会更加困难。

public class MainActivity extends AppCompatActivity {

SharedPreferences preferences;

TextView showGoalTextView;
TextView showBeamsTextView;

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

    showGoalTextView = (TextView) findViewById(R.id.textView3);
    showBeamsTextView = (TextView) findViewById(R.id.textView2);

    preferences = getSharedPreferences("userData", MODE_PRIVATE);
    updateGoalTextView();
}

updateGoalTextView()方法:

    public void updateGoalTextView() {
    String goalSave = showGoalTextView.getText().toString();
    String beamsSave = showBeamsTextView.getText().toString();

    SharedPreferences preferences = getSharedPreferences("userData", MODE_PRIVATE);
    SharedPreferences.Editor editor = preferences.edit();
    editor.putString("goals", goalSave);
    editor.putString("beam", beamsSave);
    editor.apply();
    // get the saved string from shared preferences
    String name1 = preferences.getString("goals", "");
// set reference to the text view
    showGoalTextView = (TextView) findViewById(R.id.textView3);
// set the string from sp as text of the textview
    showGoalTextView.setText(name1);
}
updateGoalTextView中调用

onCreate。希望我使用的方法是正确的,因为如果我在带有AS的手机上运行它,它只是不会保存数据并重新创建它。

知道怎么解决吗? 要更清楚地了解我的意思,请下载我的测试版应用:https://play.google.com/store/apps/details?id=jhpcoenen.connectlife.beams

谢谢,所有人都有答案。在查看了答案并在GOOGLE上搜索之后,我最终确定了它。

1 个答案:

答案 0 :(得分:2)

您可以使用SharedPreference非常轻松地存储TextViewEditText的值。 如果要使用自动保存,则可以使用TextWatcher来获取文本类型事件,也可以使用onPause()和onResume()方法来存储和读取值。

以下是在SharedPreferences中存储数据的示例代码。

初始化SharedPreferences -

SharedPreferences pref=getSharedPreferences("my_shared_preferences",MODE_PRIVATE);

将数据存储在SharedPreferences -

SharedPreferences.Editor editor=pref.edit();
editor.putString("key1","value 1");
editor.putString("key2","value 2");
editor.commit();

SharedPreferences -

读取数据
String var1=pref.getString("key1","")
String var2=pref.getString("key2","")

希望它能帮助您找到解决方案。感谢。