2
如何從其他活動編輯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);
}
這一個作品謝謝你的傢伙:) – xhen