在简历上重新加载 SharedPreferences? (或如何刷新/重新加载活动)

发布于 2024-10-24 08:40:17 字数 119 浏览 0 评论 0原文

当我从一项活动恢复到另一项活动时,如何重新加载 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 技术交流群。

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

发布评论

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

评论(1

霓裳挽歌倾城醉 2024-10-31 08:40:17

正常获取和设置 SharedPreferences 的方式与在 onResume 中获取和设置的方式没有区别。除了获取最新的首选项之外,您还需要做的是更新 Activity 中使用首选项值的所有对象。这将确保您的Activity 使用最新的值。

一个简单的例子:

protected void onResume() {
    super.onResume();
        getPrefs();

    //...Now update your objects with preference values         
}

private void getPrefs() {
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
    String myPref = prefs.getString("myPref", "");
}

There is no difference in how you get and set SharedPreferences normally and from doing so in onResume. What you will need to do in addition to getting the most recent preferences, is update any objects you have in the Activity that use preference values. This will ensure your Activity is working with the most recent values.

A simple example:

protected void onResume() {
    super.onResume();
        getPrefs();

    //...Now update your objects with preference values         
}

private void getPrefs() {
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
    String myPref = prefs.getString("myPref", "");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文