Need Help in Changing Screen Orientation in Android

后端 未结 3 460
無奈伤痛
無奈伤痛 2021-01-24 16:03

I want to change the screen orientation from portrait to landscape and vice versa when the user rotates his Android mobile phone clockwise/anticlockwise. Can anyone help me how

3条回答
  •  逝去的感伤
    2021-01-24 16:30

    Just add to your AndroidManifest in activity

    android:configChanges="keyboardHidden|orientation"
    

    Then you should override this method in your activity

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
      super.onConfigurationChanged(newConfig);
      setContentView(R.layout.myLayout);
    }
    

    And use search, this question is very popular.

提交回复
热议问题