Android 8.1下的nano pc t4板的屏幕方向肖像

时间:2019-01-31 20:40:45

标签: android android-8.1-oreo

运行Android 8.1的 nano pc t4 板的屏幕方向存在问题。在“风景”模式下,它可以正常工作,但是在“肖像”模式下,它可以缩放并显示如下图所示,带有黑角:

Photo of TV. Screen orientation is horizontal but Android app displayed vertically

当前,我们需要如下图所示将其翻转,且没有空格:

Photo of monitor with orientation rotated 90 degrees. App is displayed properly

我们已经通过多种方式进行了测试:

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT);

以及更多变体。谁能帮助您设置正确的配置?

1 个答案:

答案 0 :(得分:2)

解锁旋转锁后,可以旋转HDMI输出:

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

然后可以设置wm的显示几何:

adb shell wm size 1080x1920
adb shell wm size 1920x1920

或切换user_rotation

settings put system user_rotation 1
settings put system user_rotation 3

NXP社区似乎是source