SharedPreferences 一種輕量級的數據保存方式 以鍵值對的方式存儲 用於存儲小批量的數據 使用方法: SharedPreferences sp= getSharedPreferences("myopt"(文件名),Context.MODE_PRIVATE(數據存儲方式)); 存儲文件名 ...
SharedPreferences 一種輕量級的數據保存方式 以鍵值對的方式存儲 用於存儲小批量的數據 使用方法: SharedPreferences sp= getSharedPreferences("myopt"(文件名),Context.MODE_PRIVATE(數據存儲方式)); 存儲文件名,數據將保存在/data/data/basepackage/shared_prefs/myopt.xml 存入數據 putXXX SharedPreferences.Editor editor=sp.edit(); Editor.putString("name","Tom"); Editor.putInt("age",20); Editor.putFloat("name",10.1); Editor.commit; 取出數據 getXXX(key,default) SharedPreferences sp=getSharedPreferences("saveSetting",);