背景 SharedPreferences我觉得是最容易上手的,以xml方式存储。代码
public class share { public static void saveInfo(Context context,String
username,String password) { ...
分类:
移动开发 时间:
2014-05-18 00:35:54
阅读次数:
360
importjava.util.HashMap;
importjava.util.Map;
importandroid.content.Context;
importandroid.content.SharedPreferences;
publicclassMySharedpreference{
privateContextcontext;
publicMySharedpreference(Contextcontext){
//TODOAuto-generatedconstructorstub
this.co..
分类:
移动开发 时间:
2014-05-13 12:10:38
阅读次数:
346
SharedPreferences对象----->getXXXSharedPreferences.Editor对象---->putXXX
分类:
其他好文 时间:
2014-05-08 07:30:06
阅读次数:
193
andorid提供了六种方式存储永久的数据,根据需求来使用不同的存储方式,例如是否对于应用程序时私有还是公有,
数据存储的空间等。
六个存储方式:
使用SharedPreferences:这种方式是使用键值对来存储私有的数据内部存储:在设备的内存中存储私有数据外部存储:在SD卡或其他的外部存储来存储公有数据SQLite数据库:在私有的数据库中存储私有的结构花数据网络存储:...
分类:
移动开发 时间:
2014-05-02 07:00:48
阅读次数:
454
对于相对较少键值对的数据集合可以使用SharedPreferences来进行存储,
键值对的数据类型基本上是基本数据类型,
常见的操作:
创建新的shared preference文件或者访问已经存在的shared preference,
可以使用getSharedPreferences()或者getPreferences()
getSharedPreferences()...
分类:
移动开发 时间:
2014-05-02 06:39:14
阅读次数:
416
SharedPreferences也是一种轻型的数据存储方式,它的本质是基于XML文件存储key-value键值对数据,通常用来存储一些简单的配置信息。其存储位置在/data/data//shared_prefs目录下。
读取SharedPreference
1.获取SharedPreference对象
/*
* name 打开的SharedPreference...
分类:
移动开发 时间:
2014-05-01 22:15:35
阅读次数:
536
//UI界面的布局 文件 package
com.example.saveuserandpasswor; import android.app.Activity; import
android.content.Sh...
分类:
移动开发 时间:
2014-05-01 19:55:30
阅读次数:
510
Android提供了三种数据储存的方式,分别为:
1.文件储存——文件存储数据使用了Java中的IO操作来进行文件的保存和读取
2.SharedPreferences储存——SharedPreferences可以存取简单的数据
3.Sqlite储存——Sqlite是一个Android内建的轻量级数据库
下面会用三个章节分别介绍这三种储存方式
Tips:很多文章认为Andr...
分类:
移动开发 时间:
2014-05-01 18:12:10
阅读次数:
403
package com.szy.shared.activity;import
android.app.Activity;import android.content.Context;import
android.content.SharedPreferences;import android.con...
分类:
其他好文 时间:
2014-04-29 10:34:47
阅读次数:
407