SharedPreferences的超简单的存和去,每天记录自己的一些百度得来的知识。。。累计使我变得强大。。终有一天我不需要百度,而需要搜索我自己的博客
//存
SharedPreferences sp = context.getSharedPreferences("config", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putString("", string);
editor.commit();
//取
SharedPreferences sp = context.getSharedPreferences("config", MODE_PRIVATE);
Toast.makeText(this, sp.getString("content", "").toString(), 0).show();