//初始化,(名字,隐私或公开)
SharedPreferences openTimes=getSharedPreferences("openTimes",0);
//提交保存数据
SharedPreferences.Editor editor=openTimes.edit();
editor.putInt("times",1);
editor.commit();
//获取数据
openTimes.getInt("times",0)
//初始化,(名字,隐私或公开)
SharedPreferences openTimes=getSharedPreferences("openTimes",0);
//提交保存数据
SharedPreferences.Editor editor=openTimes.edit();
editor.putInt("times",1);
editor.commit();
//获取数据
openTimes.getInt("times",0)