gpt4 book ai didi

android - 在其他 Activity 中编辑共享首选项

转载 作者:搜寻专家 更新时间:2023-11-01 09:35:40 25 4
gpt4 key购买 nike

如何从其他 Activity 编辑 sharedPreference 的值。我通过在上下文部分遇到错误来尝试此代码。

if(stars == 2){

SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editor editor = scorepref.edit();
editor.putInt("keyhelloworld", stars);
editor.commit();
Intent fromHW = new Intent(HelloWorldGameActivity.this, LessonActivity.class);
startActivity(fromHW);
}

最佳答案

试试这个。从第一个 Activity 传递上下文。

调用共享首选项

SharedPreferences sharedPreferences = context.getSharedPreferences("myPrefs", Context.MODE_PRIVATE);

调用编辑器

SharedPreferences.Editor editor = context.getSharedPreferences("myPrefs", Context.MODE_PRIVATE).edit();

关于android - 在其他 Activity 中编辑共享首选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43437676/

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