【发布时间】:2015-05-21 13:03:12
【问题描述】:
祝你有美好的一天。我想设置共享偏好活动。我已经设计了一个对话活动,但是如果我保存首选项,我可以从我的应用程序的其他活动中获取首选项。
@Override
public void pref(){
SharedPreferences sharedpref =getSharedPreferences("BOYUT",Context.MODE_APPEND);
sharedpref=getSharedPreferences("THEME",Context.MODE_APPEND);
SharedPreferences.Editor editor= sharedpref.edit();
editor.putInt("BOYUT", sonboyut);
editor.putInt("THEME",tema);
editor.apply();
Toast.makeText(getApplicationContext(),"Kaydedildi",Toast.LENGTH_LONG).show();
}
【问题讨论】:
标签: android-intent android-activity sharedpreferences