Android, landscape only orientation?

前端 未结 6 1477
半阙折子戏
半阙折子戏 2020-11-30 06:10

How can I make it so the screen orientation is always landscape?

Do I need to add something to the manifest.xml?

6条回答
  •  -上瘾入骨i
    2020-11-30 06:50

    Add this android:screenOrientation="landscape" to your tag in the manifest for the specific activity that you want to be in landscape.

    Edit:

    To toggle the orientation from the Activity code, call setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) other parameters can be found in the Android docs for ActivityInfo.

提交回复
热议问题