如何使用libGDX设置人像模式?

2022-09-02 09:03:05

我已经创建了一个游戏,在桌面模式下还可以,但是当我在S3上启动它时,它会进入横向模式,我该如何更改它?

提前感谢您


答案 1

enter image description here

安卓:屏幕定向:

  • 景观
  • 肖像
  • 未指定
  • 反向景观
  • 反向葡萄牙
  • 传感器景观
  • 传感器葡萄牙

欲了解更多信息,您可以访问: 安卓活动元素


答案 2

查看<活动>元素。您可以将方向设置为:

android:screenOrientation=["unspecified" | "behind" |
                                     "landscape" | "portrait" |
                                     "reverseLandscape" | "reversePortrait" |
                                     "sensorLandscape" | "sensorPortrait" |
                                     "userLandscape" | "userPortrait" |
                                     "sensor" | "fullSensor" | "nosensor" |
                                     "user" | "fullUser" | "locked"]

推荐