Android_Screen_Rotation
主控
型号
编译配置路径
A133 源码修改屏幕方向
longan/device/config/chips/a133/configs/c3/android/bootlogo.bmp


H618 源码修改屏幕方向
命令修改屏幕方向
Last updated
(SDK)$ vim device/softwinner/apollo/apollo_p2.mk
PRODUCT_PROPERTY_OVERRIDES += \
ro.surface_flinger.primary_display_orientation=ORIENTATION_0
#ro.surface_flinger.primary_display_orientation=ORIENTATION_90
#ro.surface_flinger.primary_display_orientation=ORIENTATION_270(SDK)$ vim device/softwinner/apollo/apollo_p2.mk
PRODUCT_PROPERTY_OVERRIDES += \
- ro.surface_flinger.primary_display_orientation=ORIENTATION_0
+ ro.surface_flinger.primary_display_orientation=ORIENTATION_90// 0
adb shell settings put system user_rotation 0
// 90°
adb shell settings put system user_rotation 1
// 180°
adb shell settings put system user_rotation 2
// 270°
adb shell settings put system user_rotation 3