标签:
//初始化,(名字,隐私或公开)
SharedPreferences openTimes=getSharedPreferences("openTimes",0);
//提交保存数据
SharedPreferences.Editor editor=openTimes.edit();
editor.putInt("times",1);
editor.commit();
//获取数据
openTimes.getInt("times",0)
标签:
原文地址:http://www.cnblogs.com/jetereting/p/4381914.html