SharedPreferences 轻型的数据存储方式

时间:2024-09-24 22:05:32

//初始化,(名字,隐私或公开)

SharedPreferences openTimes=getSharedPreferences("openTimes",0);

//提交保存数据

SharedPreferences.Editor editor=openTimes.edit();
        editor.putInt("times",1);
        editor.commit();

//获取数据

openTimes.getInt("times",0)