android 读写SharedPReferences
写入数据
SharedPreferences sp = context.getSharedPreferences("test", Context.MODE_PRIVATE);Editor editor = sp.edit();editor.putString(key, value);editor.commit();读取数据SharedPreferences sp = context.getSharedPreferences("test", Context.MODE_PRIVATE);return sp.getString(key, null);http://blog.csdn.net/guo83851250/article/details/54882498
新闻热点
疑难解答