How to Disable landscape mode in Android?

前端 未结 30 3017
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 13:59

    I was not aware of the AndroidManifest.xml file switch until reading this post, so in my apps I have used this instead:

    setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);     //  Fixed Portrait orientation
    

提交回复
热议问题