博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SharedPreferences共享参数类
阅读量:6457 次
发布时间:2019-06-23

本文共 2426 字,大约阅读时间需要 8 分钟。

一、作用

    主要用于存放软件的配置参数等信息。sharedPreferences用于存取和修改软件配置参数数据的接口,由getSharedPreferences(String, int)函数返回。任何具体的参数,都有一个单独的该类实例向所有客户端共享。修改参数必须通过SharedPreferences.Editor 对象,以确保这些参数在被提交到外存的时候它们的值处于一致的状态和控制之下。该类暂不支持多进程操作,但是以后将提供该功能。

原文:

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.

Note: currently this class does not support use across multiple processes. This will be added later.

 

二、SharedPreferences.Editor 类简介

public abstract SharedPreferences.Editor edit ()

Create a new Editor for these preferences, through which you can make modifications to the data in the preferences and atomically commit those changes back to the SharedPreferences object.

Note that you must call commit() to have any changes you perform in the Editor actually show up in the SharedPreferences.

 

三、存放参数实例源码:

@Override public void onClick(View v)             {
String name = nameText.getText().toString(); String age = ageText.getText().toString(); SharedPreferences preferences = getSharedPreferences("itcast", Context.MODE_WORLD_READABLE); Editor editor = preferences.edit(); editor.putString("name", name); editor.putInt("age", new Integer(age)); editor.commit(); Toast.makeText(MainActivity.this, R.string.success, 1).show(); }

四、读取参数实例源码:

@Override public void onClick(View v)             {
SharedPreferences preferences = getSharedPreferences("itcast", Context.MODE_PRIVATE); String name = preferences.getString("name", ""); int age = preferences.getInt("age", 20); nameText.setText(name); ageText.setText(String.valueOf(age)); }

五、归纳

通过以上类的介绍和实例源码分析,可以总结出一般步骤:

存放:

1.获得SharedPreferences 的实例对象,通过getSharedPreferences()传递文件名和模式;

2.获得Editor 的实例对象,通过SharedPreferences 的实例对象的edit()方法;

3.存入数据,利用Editor 对象的putXXX()方法;

4.提交修改的数据,利用Editor 对象的commit()方法。

 

读取:

1.获得SharedPreferences 的实例对象,通过getSharedPreferences()传递文件名和模式;

2.读取数据,通过SharedPreferences 的实例对象的getXXX()方法。

 

 

转载地址:http://hwizo.baihongyu.com/

你可能感兴趣的文章
三分 POJ 2420 A Star not a Tree?
查看>>
Java多线程和线程池
查看>>
36.Node.js 工具模块--OS模块系统操作
查看>>
存储过程报错行提示
查看>>
第一篇markdown博文
查看>>
Leetcode 4 - median-of-two-sorted-arrays
查看>>
noj 2033 一页书的书 [ dp + 组合数 ]
查看>>
ERDAS软件应用(四)遥感影像数据增强
查看>>
修改OBS为仅直播音频
查看>>
完整版:《开源框架实战宝典电子书V1.0.0》内测版下载地址!
查看>>
OCP读书笔记(14) - 管理数据库性能
查看>>
OCA读书笔记(3) - 使用DBCA创建Oracle数据库
查看>>
CKEditor的使用-编辑文本
查看>>
洗礼灵魂,修炼python(40)--面向对象编程(10)—定制魔法方法+time模块
查看>>
HDU------checksum
查看>>
使用树莓派拍摄延时动画,制作GIF图
查看>>
css命名规范
查看>>
js 效果
查看>>
19.Java5同步集合类的应用
查看>>
python 关键字yield解析
查看>>