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

存取sharedpferences数据

时间:2017-09-04 11:00:50      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:取数据   ble   get   text   name   world   contex   context   gets   

//存数据
spCount = context.getSharedPreferences("counter", Context.MODE_WORLD_READABLE);
editor= spCount.edit();
editor.putString("username", "alex");
editor.commit();

//取数据
spCount = getSharedPreferences("counter", Context.MODE_WORLD_READABLE);
String userName= spCount.getString("username", "");

存取sharedpferences数据

标签:取数据   ble   get   text   name   world   contex   context   gets   

原文地址:http://www.cnblogs.com/452035305qq/p/7472315.html

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