web-dev-qa-db-ja.com

libGDXでポートレートモードを設定するにはどうすればよいですか?

ゲームを作成しました。デスクトップモードでも問題ありませんが、S3で起動すると、横向きモードになります。どうすれば変更できますか?

前もって感謝します

19
DomeWTF

enter image description here

Android:screenOrientation:

  • landscape
  • 肖像画
  • 詳細不明
  • 後ろに
  • reverseLandscape
  • reversePortrait
  • sensorLandscape
  • sensorPortrait

詳細については、次のWebサイトをご覧ください。 Androidアクティビティ要素

23
Orlando Herrera

<activity> element 。向きは次のように設定できます。

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