How to Disable landscape mode in Android?

前端 未结 30 2709
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

    You can force your particular activity to always remain in portrait mode by writing this in your manifest.xml

     
    

    You can also force your activity to remain in postrait mode by writing following line in your activity's onCreate() method

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            // TODO Auto-generated method stub
            super.onCreate(savedInstanceState);
            setContentView(R.layout.your_layout);
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    
    }
    

提交回复
热议问题