Android, landscape only orientation?

前端 未结 6 1512
半阙折子戏
半阙折子戏 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条回答
  •  孤街浪徒
    2020-11-30 07:10

    Just two steps needed:

    1. Apply setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); after setContentView().

    2. In the AndroidMainfest.xml, put this statement

    Hope it helps and happy coding :)

提交回复
热议问题