adb shell settings put 和 adb shell setprop
时间: 2024-08-16 10:09:10 浏览: 195
`adb shell` 是 Android Debug Bridge (ADB) 的命令行工具,用于在 Android 设备上执行系统级别的操作。`settings put` 和 `setprop` 都是 ADB 中用于修改设备系统设置的命令。
`settings put` 命令允许你在命令行界面直接设置系统设置变量(也称为 "sysvars" 或 "properties")。它的基本语法是:
```bash
adb shell settings put <category>/<name> <value>
```
例如,如果你想将网络模式设为飞行模式,你可以输入:
```bash
adb shell settings put global/carrier_mode 0
```
这里 `<category>` 是设置的类别,`<name>` 是具体的属性名,`<value>` 是要设置的新值。
而 `setprop` 是更通用的一个命令,它可以直接在设备上修改 key-value 对(类似于环境变量),也可以设置系统变量,语法类似:
```bash
adb shell setprop <property-key> <property-value>
```
比如设置 `airplane_mode_on` 为 true:
```bash
adb shell setprop airplane_mode_on 1
```
相关问题
解释这些命令::tools\adb shell "am broadcast -a android.screen.lock --es lock on" tools\adb shell "settings put system ubiot.hide.statusbar 1" tools\adb shell "settings put global wifi_on 0" tools\adb shell "settings put global bluetooth_on 0" tools\adb shell "setprop persist.display.rotate 90" tools\adb shell "setprop persist.panel.orientation 90"
这些命令是用于在Android设备上执行特定的操作。让我为您解释一下每个命令的含义:
1. `am broadcast -a android.screen.lock --es lock on`:这个命令是用于发送广播,将屏幕锁定。它会触发设备上的屏幕锁定功能。
2. `settings put system ubiot.hide.statusbar 1`:这个命令将系统设置中的`ubiot.hide.statusbar`属性设置为1,这将隐藏设备上的状态栏。
3. `settings put global wifi_on 0`:这个命令将全局设置中的`wifi_on`属性设置为0,将关闭设备上的Wi-Fi功能。
4. `settings put global bluetooth_on 0`:这个命令将全局设置中的`bluetooth_on`属性设置为0,将关闭设备上的蓝牙功能。
5. `setprop persist.display.rotate 90`:这个命令将持久化属性`persist.display.rotate`设置为90,将旋转设备的显示方向为顺时针90度。
6. `setprop persist.panel.orientation 90`:这个命令将持久化属性`persist.panel.orientation`设置为90,将旋转设备的面板方向为顺时针90度。
请注意,这些命令需要在具有适当权限的Android设备上执行,并且执行结果可能因设备型号和操作系统版本而有所不同。谨慎使用,并确保了解每个命令的作用和影响。
adb shell settings put system user_rotation 指令无效
如果在执行 `adb shell settings put system user_rotation [0/1/2/3]` 指令后发现无法修改 Android 设备的系统显示方向,可能是因为你的设备运行的是 Android 9 或以上的版本,而 Google 在 Android 9 中对 `user_rotation` 这个设置进行了限制,只允许系统级别的应用才能更改。
如果你想要继续使用 `adb shell settings put system user_rotation [0/1/2/3]` 指令修改 Android 设备的系统显示方向,可以尝试以下两种方法:
1. 在 Android 设备上安装一个第三方的屏幕旋转应用,比如“Rotation Control”,然后使用 adb 命令启动该应用,并通过该应用来更改屏幕方向。具体命令如下:
```
adb shell am start -n jp.snowlife01.android.rotationcontrol/jp.snowlife01.android.rotationcontrol.MainActivity
```
这样,就可以启动“Rotation Control”应用,并在应用中更改屏幕方向。
2. 如果你不想安装第三方应用,也可以使用 `adb shell wm` 命令来模拟旋转屏幕的操作,具体命令如下:
```
adb shell wm rotation [0/1/2/3]
```
其中,[0/1/2/3] 的含义同上。这样,就可以通过模拟旋转屏幕的操作来改变 Android 设备的系统显示方向了。
阅读全文