How to control landscape and portrait programmatically in android?

前端 未结 5 912
慢半拍i
慢半拍i 2021-02-06 07:07

I developed on application using android sdk 4.0 and I install that .apk file in my samsung tab. When I run that application it is working properly. If I change the tab portra

5条回答
  •  暖寄归人
    2021-02-06 07:39

    You can use this for landscape

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); 
    

    To change to portrait mode, use the

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    

提交回复
热议问题