重构共享首选项键但在 Android 中保留它们的值

发布于 2024-12-17 12:27:38 字数 158 浏览 0 评论 0原文

我已向市场发布了我的应用程序,并且正在准备更新。

但是,我想重构某些共享首选项的键名称,但保留用户设备上的当前值。另一件事是我还想删除旧的密钥名称(这样 SharedPreferences 文件就不会被不必要的密钥污染。

我怎样才能实现这一点而不给我的用户带来任何麻烦?

I have released my app to the market and I'm preparing an update.

However, I wanted to refactor the key name of some shared preference but retain the current value on the user's device. Another thing is that I also want to delete the old key name (so the SharedPreferences file is not polluted with unnecessary keys.

How can I achieve this without any hassle to my users?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜你已久 2024-12-24 12:27:38

创建所有首选项键的数组

创建所有新首选项键的数组

然后创建其所有值的数组。

然后调用 SharedPreferences.clear()。这将从首选项中完全删除所有键和值。

逐步遍历所有值并通过新键将它们放回到 SharedPreferences 中。

Create an array of all of your preference keys

Create an array of all the new preference keys

Then create and array of all of their values.

Then call SharedPreferences.clear(). This will completely remove all keys and values from the preferences.

The step through all values and place them back into the SharedPreferences by their new key.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文