i want to make my application only in landscape in android

前端 未结 5 577
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:34

    You can also try setting the orientation from your code

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    

    Check this link for more info

    http://www.devx.com/wireless/Article/40792/0/page/5

提交回复
热议问题