I am creating a magazine app which uses a ViewPager and scrolls over different WebViews.
Most of the pages are portrait but some of them can be seen as landscape.
To handle this, I am using two methods in the Activity holding the ViewPager:
public void allowOrientationChanges() {
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);
}
public void enforcePortrait() {
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
With this we make sure that all the pages that just need to be portrait stay portrait (calling getActivity().enforcePortrait()) and the ones that have portrait/landscape views goes through the whole restart process (calling getActivity().allowOrientationChanges()).
We reached a point where we want to add video to some of the magazine's pages. Unfortunately the HTML5 video tag isn't working fine so we added a VideoView to our layout.
The feature to add now is:
- in portrait: Showing the video in a certain place. (Done!)
- in landscape: Making the video full screen (like the youtube app).
I have been trying to do this and the only way I found is changing the size of the VideoView in the onConfigurationChanged() method in the Activity and notifying the fragment that the configuration changed. The problem with this is adding android:configChanges="orientation|keyboardHidden" to the Activity will "disallow" the views to be recreated.
The two possible solutions I thought of:
- Changing the
android:configChangesfrom the code and depending on the page but I couldn't find if that call exists. - Forcing a recreate on the
onConfigurationChanged()method. I don't know how to force a recreation of thefragment.
Any ideas?