How to change the Orientation for fragments in Android?

6.6k Views Asked by At

I have managed to change the Orientation for my fragment in my activity. The Orientation is changed when my device is rotated.

Now I want to same functionality when I click on a button in the fragment. i.e. I want to change from portrait mode to LandScape mode when I click on a button on the portrait layout and visa vera.

I used

getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

and

    getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

respectively.

But this made the auto rotate functionality stop working. How can I fix this issue?

2

There are 2 best solutions below

2
On

Please try this

             <activity 
              android:name="<class name with package>"
                   android:label="@string/app_name"
                 android:theme="@android:style/Theme.NoTitleBar"
                 android:configChanges="orientation|keyboardHidden"
                android:screenOrientation="portrait">
0
On

When you need auto rotating use getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);