Programming/android
android hdmi rotate
구차니
2022. 5. 12. 08:18
핸드폰을 HDMI로 연결해서 쓰다보니 세로 모드에서 HDMI 미러링시
작게 나오는게 그게 아쉬워서, 세로 모드를 화면 돌린채로 가득 채울수 없나 찾아보는 중.
the HDMI output can be rotated, after unlocking the rotation lock: adb shell root adb shell remount adb shell setprop persist.demo.hdmirotation portrait adb shell setprop persist.demo.hdmirotationlock false adb shell setprop persist.demo.singledisplay true adb reboot one can then set the wm's display geometry: adb shell wm size 1080x1920 adb shell wm size 1920x1920 or switch the user_rotation: settings put system user_rotation 1 settings put system user_rotation 3 the NXP community seems to be the source. |
[링크 : https://stackoverflow.com/questions/54468895]
[링크 : https://m.clien.net/service/board/cm_andro/11264652]