用户杀死Android应用后保存状态
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用户杀死Android应用后保存状态相关的知识,希望对你有一定的参考价值。
我一直在努力解决我的一些项目。我需要保存2个TextView
值,以便当用户按下后退按钮或重新启动手机然后返回到应用程序时它们就在那里。到目前为止,我已经尝试了很多方法,但不知何故它将无法工作..该应用程序显示一个带有“目标”的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上搜索之后,我最终修复了它。
您可以使用SharedPreference
非常容易地存储TextView
或EditText
的值。如果要使用自动保存,则可以使用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","")
希望它能帮助您找到解决方案。谢谢。
以上是关于用户杀死Android应用后保存状态的主要内容,如果未能解决你的问题,请参考以下文章
Android JetPack组件之ViewModel状态的保存(程序在后台被系统杀死数据也存活)