码迷,mamicode.com
首页 > 其他好文 > 详细

SharedPrefences的用处

时间:2017-03-02 00:59:27      阅读:499      评论:0      收藏:0      [点我收藏+]

标签:tin   get   apply()   price   存储   put   ring   gets   shared   

存储数据
SharedPreferences.Editor edit = getSharedPreferences("data", MODE_PRIVATE).edit();
edit.putString("bookname", "完美");
edit.putString("anthor", "刘红");
edit.putInt("page", 700);
edit.putInt("price", 230);
edit.apply();
读取数据
 SharedPreferences prep = getSharedPreferences("data", MODE_PRIVATE);
String bookname= prep.getString("bookname", "");
String anthor= prep.getString("anthor", "");
int page= prep.getInt("page",0);
int price=prep.getInt("price",0);

SharedPrefences的用处

标签:tin   get   apply()   price   存储   put   ring   gets   shared   

原文地址:http://www.cnblogs.com/cct1314520/p/6486904.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!