Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to lock fragment orientation without locking activity orientation?

I have a specific use case where I want a fragment to be locked in portrait mode, but still rotate the activity (and/or other fragments visible in the same activity). Is it possible to do that?

All the solutions to locking a fragment orientation suggest to use setRequestedOrientation and lock the activity orientation, but I need other visible fragments to rotate.

My app supports API 10+ (if there is a nice solution that uses API 11+ I may consider removing support for landscape in API <11).

Thanks in advance.

like image 426
Kathy Avatar asked Dec 04 '13 08:12

Kathy


1 Answers

Take a look at this answer:

Override setUserVisibleHint() in each fragment.

In the portrait only fragments:

@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
    super.setUserVisibleHint(isVisibleToUser);
    if(isVisibleToUser) {
        Activity a = getActivity();
        if(a != null) a.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    }
}

in the the portrait/landscape fragment:

@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
    super.setUserVisibleHint(isVisibleToUser);
    if(isVisibleToUser) {
        Activity a = getActivity();
        if(a != null) a.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR);
    }
}

This will allow the whole activity to rotate in one fragment, but fix it to portrait in others.

Answered by: https://stackoverflow.com/a/13252788/2767703

like image 157
Kevin van Mierlo Avatar answered Sep 19 '22 12:09

Kevin van Mierlo