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();
目前尚未使用待我使用後再來補充
相關文章
相關標籤/搜索