存在Settings数据在手机系统中的位置

旧版本Android,将settings数据存在数据库中,{system, secure, global} 对应的是 /data/data/com.android.providers.settings/databases/settings.db 的三个表

新版本使用xml文件存储,一般位于 /data/system/users/0目录下,该目录的settings_global.xml,settings_secure.xml和settings_system.xml三个xml文件就是SettingsProvider中的数据文件。

获取值

adb shell settings get system [key]

adb shell settings get global [key]

adb shell settings get secure [key]

设置值

adb shell settings put system [key] [value]

adb shell settings put global [key] [value]

adb shell settings put secure [key] [value]

原文地址:https://www.cnblogs.com/genggeng/p/9397437.html