##参数 sharedpreference
>用来保存用户的配置信息和简单的数据
>
1.声明 SharedPreferences sp;
2.初始化 sp = this.getSharedPreferences("config",0);//文件名不要后缀,系统会自动加上xml后缀,0表示私有模式
3.获取sp的编辑器 Editor editor = sp.edit();
4.存储数据 editor.putString() putBoolean putLong
5.最后一步重要,一定要记得commit*(),数据才会被保存
本文出自 “曾颐楠的播客” 博客,请务必保留此出处http://zengyinan.blog.51cto.com/9524976/1721443