How to Disable landscape mode in Android?

前端 未结 30 3023
Happy的楠姐
Happy的楠姐 2020-11-22 13:45

How can I disable landscape mode for some of the views in my Android app?

30条回答
  •  轮回少年
    2020-11-22 14:14

    Either in manifest class.

    
    

    or programmatically

    setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); 
    

    Note : you should call this before setContentView method for your activity in onCreate().

提交回复
热议问题