How to Disable landscape mode in Android?

前端 未结 30 2668
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:19

    If you want user-settings,

    then I'd recommend setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

    You can change the settings from a settings menu.

    I require this because my timers must correspond to what's on the screen, and rotating the screen will destroy the current activity.

提交回复
热议问题