重构共享首选项键但在 Android 中保留它们的值
我已向市场发布了我的应用程序,并且正在准备更新。
但是,我想重构某些共享首选项的键名称,但保留用户设备上的当前值。另一件事是我还想删除旧的密钥名称(这样 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建所有首选项键的数组
创建所有新首选项键的数组
然后创建其所有值的数组。
然后调用 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.