平板的平行视窗功能 如何用adb命令关闭打开
时间: 2023-07-19 20:40:00 浏览: 488
adb命令大全.zip
要关闭或打开平板的平行视窗功能,您可以使用以下 ADB 命令:
关闭平行视窗功能:
```
adb shell settings put global enable_freeform_support 0
```
打开平行视窗功能:
```
adb shell settings put global enable_freeform_support 1
```
请注意,这些命令需要在具有 root 权限的设备上运行。如果您的设备没有 root 权限,则需要在开发者选项中启用 "USB 调试" 后,使用以下命令:
```
adb shell settings put global enable_freeform_support 0/1
```
希望这可以帮助您关闭或打开平板的平行视窗功能。
阅读全文