3

我才刚开始。

每次我在模拟器上运行项目时,我都试图增加一个简单的计数器。

我认为添加一个integer类型itemstrings.xml有所帮助,但这是最终的,无法修改。

基本上我只会在我的应用程序的第一个基本屏幕中显示:

Started: N其中 N 将是我第 N 次从 Eclipse 启动该项目。

如何制作这样一个在应用程序启动和退出时持续存在的计数器?

知道了:

    SharedPreferences pref = getPreferences(MODE_PRIVATE);
    int tempN=pref.getInt("N", 0);
    tempN++;
    SharedPreferences.Editor editor = pref.edit();
    editor.putInt("N",tempN);

    editor.commit();

    msgBox.setText("Started:"+tempN);

我仍然不明白的一件事是,当我调用 时pref.getInt("N",0),键值对是否会<N,0>自动创建?

4

2 回答 2

5

您可以为此使用共享偏好。您可以将整数存储在共享偏好中,并在需要时获取它的值。

试试这个。

SharedPreferences prefs = getSharedPreferences("Share", Context.MODE_PRIVATE );
Editor editor = prefs.edit();
editor.putInt("Value", 1 );
editor.commit();

获取价值

prefs.getInt("Value",0);
于 2012-12-10T07:04:19.660 回答
4

在您的主要活动 onCreate() 中:

SharedPreferences pref = this.getSharedPreferences();
int count = pref.getInt("your key", 0) //0 is default value.
count++;

SharedPreferences.Editor edit = pref.edit();
edit.putInt("your key", count);
edit.commit();
// display current count
于 2012-12-10T07:13:44.853 回答