Settings属性读写
在Android系统当中,系统设置保存着全局性、系统级别的用户编好设置,比如像飞行模式开关、是否开启手机静音模式时震动、屏幕休眠时长等状态值(前提是有读取权限)。
1、Settings属性
这些用户偏好的设置很多就保存在SettingsProvider中,在Android 6.0及以后版本,SettingsProvider被重构,Android从性能、安全等方面考虑,把SettingsProvider中原本保存在settings.db中的数据,全部保存在XML文件中。并且对SettingsProvider对数据进行了分类,分别是Global、System、Secure三种类型:
①Global:所有的偏好设置对系统的所有用户公开,第三方APP有读没有写的权限;
②System:包含各种各样的用户偏好系统设置,第三方APP有读没有写的权限;
③Secure:安全性的用户偏好系统设置,第三方APP有读没有写的权限。
1.1、Global
所有的偏好设置对系统的所有用户公开,第三方APP有读没有写的权限;对应xml路径:/data/system/users/0/settings_global.xml。一些值已经从Secure挪到了Global,或者一些值从Global挪到了Secure表中,系统为了兼容,通过MOVED_TO_GLOBAL/MOVED_TO_SECURE_THEN_GLOBAL映射做了处理。
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)
private static final HashSet<String> MOVED_TO_GLOBAL;
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)
private static final HashSet<String> MOVED_TO_SECURE_THEN_GLOBAL;
static {
MOVED_TO_GLOBAL = new HashSet<>();
MOVED_TO_SECURE_THEN_GLOBAL = new HashSet<>();
// these were originally in system but migrated to secure in the past,
// so are duplicated in the Secure.* namespace
MOVED_TO_SECURE_THEN_GLOBAL.add(Global.ADB_ENABLED);
MOVED_TO_SECURE_THEN_GLOBAL.add(Global.BLUETOOTH_ON);
MOVED_TO_SECURE_THEN_GLOBAL.add(Global.DATA_ROAMING);
....
// these are moving directly from system to global
MOVED_TO_GLOBAL.add(Settings.Global.AIRPLANE_MODE_ON);
MOVED_TO_GLOBAL.add(Settings.Global.AIRPLANE_MODE_RADIOS);
MOVED_TO_GLOBAL.add(Settings.Global.AIRPLANE_MODE_TOGGLEABLE_RADIOS);
MOVED_TO_GLOBAL.add(Settings.Global.AUTO_TIME);
....
}
代码读写Global:(写权限要求系统app)
//读Global
Settings.Global.getLong(context.getContentResolver(), key, defaltValue);
//写Global
Settings.Global.putLong(mContext.getContentResolver(), key, value);
adb读写Global命令:
//adb读
adb shell settings get global key
//adb写
adb shell settings put global key value
列出Global表中全部属性值:
adb shell settings list global
1.2、System
包含各种各样的用户偏好系统设置;对应xml路径:/data/system/users/0/settings_system.xml
代码读写System:(写权限要求系统app)
//读System
Settings.System.getLong(context.getContentResolver(), key, defaltValue);
//写System
Settings.System.putLong(mContext.getContentResolver(), key, value)
adb读写System命令:
//adb读
adb shell settings get system key
//adb写
adb shell settings put system key value
列出System表中全部属性值:
adb shell settings list system
1.3、Secure
Secure表中存储的是安全性的用户偏好系统设置,第三方APP有读没有写的权限。对应xml路径:/data/system/users/0/settings_secure.xml,系统中一部分key已经挪到了Secure表中,通过MOVED_TO_SECURE映射兼容,其实查这些值会到Secure中查找。
@UnsupportedAppUsage
private static final HashSet<String> MOVED_TO_SECURE;
static {
MOVED_TO_SECURE = new HashSet<>(30);
MOVED_TO_SECURE.add(Secure.ADAPTIVE_SLEEP);
MOVED_TO_SECURE.add(Secure.ANDROID_ID);
MOVED_TO_SECURE.add(Secure.HTTP_PROXY);
MOVED_TO_SECURE.add(Secure.LOCATION_PROVIDERS_ALLOWED);
MOVED_TO_SECURE.add(Secure.LOCK_BIOMETRIC_WEAK_FLAGS);
MOVED_TO_SECURE.add(Secure.LOCK_PATTERN_ENABLED);
MOVED_TO_SECURE.add(Secure.LOCK_PATTERN_VISIBLE);
MOVED_TO_SECURE.add(Secure.LOCK_PATTERN_TACTILE_FEEDBACK_ENABLED);
....
}
代码读写Secure:(写权限要求系统app)
//读Secure
Settings.Secure.getLong(context.getContentResolver(), key, defaltValue);
//写Secure
Settings.Secure.putLong(mContext.getContentResolver(), key, value);
adb读写Secure命令:
//adb读
adb shell settings get secure key
//adb写
adb shell settings put secure key value
列出Secure表中全部属性值:
adb shell settings list secure
2、监听Settings变化
要监听Settings中特定值的变化,如果保存的Settings值发生了变化,实现第一时间处理对应的逻辑。可以自定义ContentObserver:
class SettingsContentObserver : ContentObserver(Handler()){
override fun onChange(selfChange: Boolean, uri: Uri?) {
super.onChange(selfChange, uri)
//TODO
}
}
以监听Global中的值为例,获取其中key对应的Uri,再通过ContentResolver将观察者注册,即可监听Global中指定key的值变化:
val observer = SettingsContentObserver()
//获取Global表中,特定key对应的Uri
val uri = Settings.Global.getUriFor("")
//注册
contentResolver.registerContentObserver(uri, true, observer)
其它两个表中的key也是这样监听的。本质上还是通过ContentProvider那套实现读、写、监听,原理本篇不再重复,详见ContentObserver内容观察者源码解析。