想必大家一定用过 sharedpreferences 吧!就我个人而言,特别讨厌每次 put 完数据还要 commit。对 我就是这么懒!哈哈。另外,sharedpreferences 不能存类,集合和bitmap等数据!这点也让人非常不爽啊!所以,我就在这个美好的星期天撸了名为 SHARE 的工具类用来替代 sharedpreferences。
先来看一下,整体架构图(画的不好请大家见谅):
从图中,我们可以了解到,当我们 put 数据的时候,我们同时存入到 内存和和sd卡中。读取的时候,优先从内存中获取,如果内存中没有,则从sd中获取。如果两者都没有,则使用用户自己设置的默认值!
下来看一下代码目录结构:
在 Application中初始化:
@Override public void onCreate() { super.onCreate(); File file = new File(Environment.getExternalStorageDirectory().toString() + File.separator + "sample"); if (!file.exists()) { file.mkdirs(); } Share.init("CACHE", 10 * 1024, file.toString()); }
之后,你就可以任意的使用它了!
//设置字符串 Share.putString("str", "你好啊"); //设置int Share.putInt("int", 1); //设置boolean Share.putBoolean("boolean", true); //设置double Share.putDouble("double", 2.1d); //设置long Share.putLong("long", 20000); //设置flot Share.putFloat("float", 2.2f); //设置类 Share.putObject("obj", people); Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.dd); //设置bitmap Share.putBitmap("bitmap", bitmap); //设置集合 Share.putObject("list", items);
//得到字符串 String str=Share.getString("str"); //得到double double dd=Share.getDouble("double", 0.0d); //得到int int value=Share.getInt("int", 0); //得到float float ff=Share.getFloat("float", 0.0f); //得到bitmap Bitmap map=Share.getBitmap("bitmap"); //得到集合 List<String> copy= (List<String>) Share.getObject("list"); .....
使用就是如此简单!
1.增加异步 get 和 put.
2.对泛型的支持.
希望这个项目对大家有用。也希望多 star .同时也能多多提出修改意见!不管是对项目本身还是代码!!!!
更多Android相关信息见 Android 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=11
本文永久更新链接地址 : http://www.linuxidc.com/Linux/2015-05/117937.htm