码迷,mamicode.com
首页 > 移动开发 > 详细

android入门之: SharedPreferences

时间:2015-09-04 12:20:49      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

读取数据:

 

技术分享

 

保存数据:

 

技术分享

 

+++++++++++++++++++方法详解++++++++++++++++++++++++++++++

SharedPreferences综述:

使用getSharedPreferences(String, int) 方法提供获取和修改preference的接口

对于任意指定的preferences集合, 所有的app共享同一个实例;

如果想要 修改preferces的话, 必须通过SharedPreferences.Editor 对象; 该对象可以保证preference状态一致而且可以控制存储;他的各种get方法的返回对象必须在整个程序中是不可变的;

使用方法http://wear.techbrood.com/guide/topics/data/data-storage.html#pref

 

摘要:

Interface for accessing and modifying preference data returned by getSharedPreferences(String, int). For any particular set of preferences, there is a single instance of this class that all clients share. Modifications to the preferences must go through an SharedPreferences.Editor object to ensure the preference values remain in a consistent state and control when they are committed to storage. Objects that are returned from the various getmethods must be treated as immutable by the application.

android入门之: SharedPreferences

标签:

原文地址:http://www.cnblogs.com/greentomlee/p/4781461.html

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