i want to make my application only in landscape in android

前端 未结 5 572
Happy的楠姐
Happy的楠姐 2020-12-08 02:19

I want to make my app work only in landscape mode but can\'t make it work. I have given screenOrientation = \"landscape\" even though the first page will be in

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-08 02:43

    You can use following code as per requirement:

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); and setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

    you have to put these code before setContentView(R.layout.layout_name.xml).

提交回复
热议问题