adb shell settings高级指令设置系统属性所有的指令汇总
目录
adb shell settings
命令允许您查看和修改设备的系统设置。这些设置分为几个命名空间:system
、secure
、global
和可能的 config
(取决于Android版本和设备)。以下是一些示例指令,包含章节划分和中文注释:
系统设置(system)
这些设置主要与设备的各种系统级行为相关。
- 查看所有系统设置:
adb shell settings list system
中文注释:列出所有的系统级别的设置。
- 更改系统设置:
adb shell settings put system <setting_name> <value>
中文注释:更新一个系统级别的设置项,<setting_name>
是设置的名字,<value>
是你要设置的值。
- 获取特定系统设置的值:
adb shell settings get system <setting_name>
中文注释:获取一个系统级别的设置项的值。
安全设置(secure)
这些设置通常包含了一些敏感信息,比如用户隐私数据或设备安全相关的配置。
- 查看所有安全设置:
adb shell settings list secure
中文注释:列出所有的安全级别的设置。
- 更改安全设置:
adb shell settings put secure <setting_name> <value>
中文注释:更新一个安全级别的设置项。
- 获取特定安全设置的值:
adb shell settings get secure <setting_name>
中文注释:获取一个安全级别的设置项的值。
全局设置(global)
全局设置包含了多用户设置以及影响整个系统的配置。
- 查看所有全局设置:
adb shell settings list global
中文注释:列出所有的全局级别的设置。
- 更改全局设置:
adb shell settings put global <setting_name> <value>
中文注释:更新一个全局级别的设置项。
- 获取特定全局设置的值:
adb shell settings get global <setting_name>
中文注释:获取一个全局级别的设置项的值。
请注意,adb shell settings
命令可以根据具体版本的Android和设备制造商的定制有所不同。上述命令是通用的,但在某些设备上可能有特定的设置项不可用或者是不同的命名空间。在使用这些命令时,最好查阅相关的设备文档以确保正确性。此外,更改某些设置可能需要root权限或者特定的安全权限。在操作之前,请确保您了解每项设置的作用以及更改后可能导致的影响。
adb shell settings
命令的其他使用示例可能不那么常见,但在某些情况下可能会有所帮助。这里提供更多具体的示例以及相关操作的解释:
删除设置
您可以删除已经存在的设置项,将它们恢复到默认值。
- 删除系统设置项:
adb shell settings delete system <setting_name>
中文注释:删除一个系统级别的设置项。
- 删除安全设置项:
adb shell settings delete secure <setting_name>
中文注释:删除一个安全级别的设置项。
- 删除全局设置项:
adb shell settings delete global <setting_name>
中文注释:删除一个全局级别的设置项。
帮助
如果您需要获取关于 settings
命令的帮助信息,可以使用以下指令:
adb shell settings --help
中文注释:显示 settings
命令的帮助信息。
示例应用
以下是一些具体化的 adb shell settings
操作示例:
- 更改屏幕亮度(系统设置范畴):
adb shell settings put system screen_brightness 200
中文注释:设置屏幕亮度为200。
- 开启飞行模式(全局设置范畴):
adb shell settings put global airplane_mode_on 1 adb shell am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
中文注释:首先通过设置全局变量将飞行模式设置为开启状态,然后发送一个广播来更改飞行模式的状态。
- 设置默认输入法(安全设置范畴):
adb shell settings put secure default_input_method "com.android.inputmethod.latin/.LatinIME"
中文注释:将默认输入法设置为拉丁输入法(这只是一个示例,实际的输入法包名需要替换为当前设备上安装的输入法的包名)。
- 开启开发者选项(全局设置范畴):
adb shell settings put global development_settings_enabled 1
中文注释:将开发者选项设置为开启状态。
请注意,在执行这些操作之前,确保您了解它们的含义以及它们可能对您的设备造成的影响。错误的设置可能会导致应用的不正常工作或系统的不稳定。如若不确定,请先在网络上查询相关设置项的具体作用。
更多
adb shell settings
命令的应用范围还包括但不限于以下几个方面:
屏幕超时时间
- 设置屏幕在一段时间后自动关闭:
adb shell settings put system screen_off_timeout 60000
中文注释:设置屏幕超时时间为60秒。
自动旋转屏幕
- 启用或禁用屏幕自动旋转:
adb shell settings put system accelerometer_rotation 1
中文注释:启用屏幕自动旋转功能。
通知光
- 开启或关闭通知光:
adb shell settings put system notification_light_pulse 1
中文注释:开启通知光。
触觉反馈
- 开启或关闭触觉反馈(振动反馈):
adb shell settings put system haptic_feedback_enabled 1
中文注释:开启触觉反馈。
动画缩放
- 关闭窗口动画缩放:
adb shell settings put global window_animation_scale 0
中文注释:关闭窗口动画效果。
- 关闭过渡动画缩放:
adb shell settings put global transition_animation_scale 0
中文注释:关闭界面之间过渡的动画效果。
- 关闭动画持续时间缩放:
adb shell settings put global animator_duration_scale 0
中文注释:关闭动画的持续时间。
定位服务
- 更改定位服务的状态:
adb shell settings put secure location_providers_allowed +gps
中文注释:开启GPS定位功能。
或者移除定位服务提供者:
adb shell settings put secure location_providers_allowed -gps
中文注释:关闭GPS定位功能。
WiFi睡眠策略
- 设置WiFi在屏幕关闭时的行为:
adb shell settings put global wifi_sleep_policy 2
中文注释:设置WiFi在屏幕关闭时始终保持连接。
安装非市场应用
- 允许或禁止安装来自非官方市场的应用:
adb shell settings put global install_non_market_apps 1
中文注释:允许安装非市场应用。
NTP服务器
- 设置NTP服务器地址:
adb shell settings put global ntp_server asia.pool.ntp.org
中文注释:设置NTP服务器为亚洲地区的服务器。
这些示例展示了adb shell settings
命令的多样性以及如何用其来调整和优化Android设备的配置。值得注意的是,由于不同厂商的Android设备可能对某些功能的接入方式有所不同,所以在使用这些命令之前,请确保您了解您的设备以及当前Android版本的具体情况。对于一些可能影响设备安全和用户隐私的设置,请谨慎操作,尤其是在生产设备上。
由于adb shell settings
命令可以访问和调整大量Android设备的设置,以下是一些额外的用法示例:
显示密度(DPI)
- 更改设备的显示密度:
adb shell settings put secure display_density_forced 440
中文注释:将显示密度设置为440dpi。
字体大小
- 调整系统字体大小:
adb shell settings put system font_scale 1.15
中文注释:将系统字体大小调整为默认大小的115%。
投射到屏幕
- 设置是否允许投射到屏幕功能:
adb shell settings put global wireless_display_on 1
中文注释:允许无线显示功能。
语言设置
- 更改设备的语言:
adb shell settings put system user_locale zh_CN
中文注释:将设备的语言设置为简体中文。
时间制式
- 切换12小时和24小时制:
adb shell settings put system time_12_24 24
中文注释:设置设备使用24小时制。
USB调试
- 启用或禁用USB调试:
adb shell settings put global adb_enabled 1
中文注释:启用USB调试。
自动同步数据
- 启用或禁用自动数据同步:
adb shell settings put global auto_sync 1
中文注释:启用自动数据同步。
蓝牙
- 开启或关闭蓝牙:
adb shell settings put global bluetooth_on 1
中文注释:开启蓝牙。需要注意的是,这可能不会立即生效,可能还需要通过其他方式(例如使用service
命令)来实际启动或停止蓝牙服务。
移动数据
- 开启或关闭移动数据:
adb shell settings put global mobile_data 1
中文注释:开启移动数据。
文本自动更正
- 启用或禁用文本自动更正:
adb shell settings put secure spell_checker_enabled 1
中文注释:启用拼写检查器。
音量设置
- 调整不同声音通道的音量:
adb shell settings put system volume_music 7
中文注释:将媒体音量设置为7(音量级别通常在0到最大值之间,具体最大值取决于设备)。
在执行这些命令时,需要注意的是不同Android版本可能对某些设置有不同的处理方式,有些设置可能需要重启设备才能生效。在实际操作前,请确认您了解每个设置的作用,并考虑可能的副作用。
亮度设置
- 调整屏幕亮度(需要注意的是,亮度值的范围可能因设备而异):
adb shell settings put system screen_brightness 200
自动亮度
- 开启或关闭自动亮度调节:
adb shell settings put system screen_brightness_mode 1
飞行模式
- 开启或关闭飞行模式:
adb shell settings put global airplane_mode_on 1 adb shell am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
开发者选项
- 启用或禁用开发者选项:
adb shell settings put global development_settings_enabled 1
USB调试授权
- 清除所有USB调试授权:
adb shell settings put global adb_keys ""
响铃音量
- 设置响铃音量:
adb shell settings put system volume_ring 5
通知音量
- 设置通知音量:
adb shell settings put system volume_notification 5
闹钟音量
- 设置闹钟音量:
adb shell settings put system volume_alarm 5
无线网络
- 开启或关闭Wi-Fi:
adb shell svc wifi enable adb shell svc wifi disable
数据流量计量
- 设置应用的后台数据流量计量:
adb shell settings put global app_data_usage_limit 5000
系统更新
- 设置系统更新策略:
adb shell settings put global ota_updates_available 1
输入法
- 更改默认输入法:
adb shell settings put secure default_input_method "com.android.inputmethod.latin/.LatinIME"
(输入法的具体设置值需要根据设备上安装的输入法应用的包名和类名进行替换)
音效
- 启用或关闭触摸音效:
adb shell settings put system sound_effects_enabled 0
锁屏
- 设置是否禁用锁屏功能:
adb shell settings put global lockscreen_disabled 1
以上是一些使用adb shell settings
命令进行系统设置的示例。不同设备和系统版本对命令的支持不同,需要根据具体情况进行尝试。操作前应确保对改动的后果有所了解,以防止意外情况的出现。也请注意,某些更改可能需要root权限才能执行。