gpt4 book ai didi

android - 加载上次运行的数据

转载 作者:行者123 更新时间:2023-11-29 14:59:41 26 4
gpt4 key购买 nike

我是这方面的新手,所以我需要一些帮助。

我想加载之前运行的数据。更准确地说,有些人可以说“硬币”(整数)将在应用程序安装时提供给用户。在游戏过程中,他会获得和失去其中一些,现在我希望用户在下次运行时继续使用相同的数量。我现在应该怎么做?

提前致谢

最佳答案

您应该使用共享首选项来存储键值对

//Get a reference to SharedPreferences for your app
SharedPreferences sharedpreferences = getSharedPreferences("my.app.packagename", Context.MODE_PRIVATE);

//Store your value
int coins = 10;
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putInt("coins", coins);
editor.commit();

//Retrieve your value on a subsequent run
//The 0 is the default value of coins, if it is not yet defined.
int coins = sharedpreferences.getInt("coins", 0);

https://www.tutorialspoint.com/android/android_shared_preferences.htm

关于android - 加载上次运行的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50182468/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com