- 电脑安装adb
- 执行获取屏幕分辨率,显示密度的信息
[SED]:
adb shell wm size
[RTN] :
Physical size: 1260x2720
[SED]:
adb shell wm density
[RTN]:
Physical density: 520
- 调整显示密度
adb shell wm density 300 # 可见导出按钮,如果还是不行,调更小
adb shell wm density reset # 恢复正常显示密度
[SED]:
adb shell wm size
[RTN] :
Physical size: 1260x2720
[SED]:
adb shell wm density
[RTN]:
Physical density: 520
adb shell wm density 300 # 可见导出按钮,如果还是不行,调更小
adb shell wm density reset # 恢复正常显示密度