sharedpreferences的简单使用

sharedpreferences
以键值对的方式将数据保存在xml
 
创建:SharePreferences sp = getShareferences(name,context。---)
context。MODE-PRIVATE当前应用操作
context。MODE-APPEND当前应用模式,追加模式
数据保存在/data/data/<package name>/shared_prefs /
 
(1)存入数据--putxx(key,value)
Sharedpreferences.Editor editor = sp.edit();
Editor.putString();
Editor.commit();
 
(2)取出数据--getxxx(key,default)
Shareperferences sf = getshareferences();
目前还没有使用待我使用后再来补充
上一篇:Windows SharePoint Services 3.0编码开发工具和技巧(Part 1 of 2)


下一篇:QtQuick桌面应用程序开发指导 3)达到UI而功能_B 4)动态管理Note物_A