/shared_prefs目錄下。SharedPreferences對象本身只能獲取數據而不支持存儲和修改,存儲修改是通過Editor對象實現。。。' />
SharedPreferences詳解
1、SharedPreferences的簡單介紹
應用程序在運行的時候,可能會隨著用戶的使用而保持該用戶的配置信息,如上次播放時的eq設置,音量設置,上網的cookies信息等等,這些小量 的信息可以通過SharedPreferences來保持,通過SharedPreferences保持的數據為一個XML文件,位于應用程序的私有文件夾。
2、具體操作方法
獲取SharedPreferences,可以通過以下方法獲取
Retrieve and hold the contents of the preferences file 'name', returning a SharedPreferences through which you can retrieve and modify its values. Only one instance of the SharedPreferences object is returned to any callers for the same name, meaning they will see each other's edits as soon as they are made.
name | Desired preferences file. If a preferences file by this name does not exist, it will be created when you retrieve an editor (SharedPreferences.edit()) and then commit changes (Editor.commit()). |
---|---|
mode |
Operating mode. Use 0 or MODE_PRIVATE for the default operation,MODE_WORLD_READABLE andMODE_WORLD_WRITEABLE to control permissions. The bitMODE_MULTI_PROCESS can also be used if multiple processes are mutating the same SharedPreferences file.MODE_MULTI_PROCESS is always on in apps targetting Gingerbread (Android 2.3) and below, and off by default in later versions. |
參數簡述:
Name————獲得SharedPreferences之后,將會在應用程序的私有文件夾中保存著一個XML文件,第一個參數name就是這個文件名字。
Mode————XML文件的保存模式,默認為0,也就是MODE_PRIVATE
3、簡單的demo
通過service的一個音樂播放例子,“播放”與“暫停”兩個按鈕
暫停之后,保持播放進度到SharedPreferences里面,然后再次播放的話,讀取進度值進行音樂播放。
推薦文章
2025-01-18
2024-11-28
2024-11-09
2024-10-25
2024-06-25
2024-01-04
2023-11-06
2023-10-30
2023-10-13
2023-10-10
穩定
產品高可用性高并發貼心
項目群及時溝通專業
產品經理1v1支持快速
MVP模式小步快跑承諾
我們選擇聲譽堅持
10年專注高端品質開發