android 7.1 改分辨率,[RK3399][Android7.1] 调试笔记 --- 开机设置默认HDMI副屏分辨率无效...
时间: 2023-10-08 19:11:01 浏览: 422
你可以尝试以下步骤来改变 Android 7.1 的分辨率:
1. 连接上 adb,输入以下命令:
```
adb shell wm size <width>x<height>
```
其中 `<width>` 和 `<height>` 分别为你想要设置的宽度和高度。
2. 重新启动设备,输入以下命令:
```
adb reboot
```
3. 如果你的设备支持多个显示器,你可以通过以下命令来设置主屏幕:
```
adb shell wm overscan <left> <top> <right> <bottom>
```
其中 `<left>`、`<top>`、`<right>` 和 `<bottom>` 分别表示主屏幕的左、上、右和下边距。
希望这些步骤能够帮助到你。
阅读全文