保存变量(Android)

时间:2010-10-16 00:51:15

标签: android variables

我有一个我想要保存的变量,并且能够在查看器打开应用程序时进行恢复。我称之为变量,计数

private int count=0;

它会不时地改变我的主要活动。如何在编辑和更改后保存并能够恢复它?

2 个答案:

答案 0 :(得分:4)

使用此...

protected void onResume(){
    super.onResume();
    SharedPreferences settings = getSharedPreferences(PREFS_COUNT, 0);
    count = settings.getInt("count", count);
}
protected void onPause(){
   super.onPause();


  SharedPreferences settings = getSharedPreferences(PREFS_COUNT, 0);
  SharedPreferences.Editor editor = settings.edit();
  editor.putInt("count", count);
  editor.commit();
}

答案 1 :(得分:3)

在文档中查找SharedPreferences