Version: 1.3
语言 : 中文
Graphics for OpenHarmony
Testing and debugging

Screen configuration

Tuanjie provides features that you can use to configure the screen when in the Editor and at runtime.

Screen orientation

You can control the screen orientation of your application on OpenHarmony devices. Detecting a change in orientation or forcing a specific orientation is useful for creating behaviors that depend on how the user holds the device.

To retrieve the current application orientation, access Screen.orientation property. The available orientations are:

Orientation Description
Portrait The application is in portrait mode and expects the device to be upright and the home button at the bottom.
PortraitUpsideDown The application is in portrait mode but upside down and expects the device to be upright and the home button at the top.
LandscapeLeft The application is in landscape mode and expects the device to be upright and the home button on the right side.
LandscapeRight The application is in landscape mode and expects the device to be upright and the home button on the left side.

To manually control the screen orientation, set Screen.orientation to one of the above orientations, or use ScreenOrientation.AutoRotation. When you enable auto-rotation, you can still disable some orientation on a case-by-case basis.

The following properties control autorotation:

Graphics for OpenHarmony
Testing and debugging