How to Disable landscape mode in Android?

前端 未结 30 3029
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:08

    In kotlin same can be programatically achieved using below

    requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
    

提交回复
热议问题