在简历上重新加载 SharedPreferences? (或如何刷新/重新加载活动)
当我从一项活动恢复到另一项活动时,如何重新加载 SharedPreferences?如果我继续,用户可能已经更改了设置。是否可以重新加载 SharedPreferences 或者我是否需要刷新/重新加载活动。如果,那么如何?
How can I reload SharedPreferences when I resume from one activity to another? If I resume, it is possible that user has changed the settings. Is it possible to reload SharedPreferences or do I need to refresh/reload activity. And if, then how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正常获取和设置
SharedPreferences
的方式与在onResume
中获取和设置的方式没有区别。除了获取最新的首选项之外,您还需要做的是更新Activity
中使用首选项值的所有对象。这将确保您的Activity
使用最新的值。一个简单的例子:
There is no difference in how you get and set
SharedPreferences
normally and from doing so inonResume
. What you will need to do in addition to getting the most recent preferences, is update any objects you have in theActivity
that use preference values. This will ensure yourActivity
is working with the most recent values.A simple example: