I've got Fragments which can be instantiated in two different ways according to the current layout.
These fragment are loaded in a PageViewer using an Adapter derived from the FragmentStatePageAdapter.
If I run the app just in portrait or landscape mode everything is fine. The fragment are loaded correctly and look ok.
The problem is when I change orientation: The fragment doesn't change, it seems that it reuse the one loaded for a certain orientation, in fact if I scroll the pager after the next one (wich it was already loaded in the previous orientation) the new fragment are loaded correctly and when I scroll back again even that "starting fragment" is reloaded correctly.
I would like to fix the problem by forcing the recreation of the current and the adjacents fragments but the solution I've tried seems to be incomplete/not working.
I've overridden the Adapter startUpdate method this way:
public void startUpdate(ViewGroup container) {
if(isPortrait != isLastOrientationPortrait){
container.removeAllViews();
instantiateItem(container, lastPosition);
}
super.startUpdate(container);
}
This force the elimination of the fragments from the containers. But I don't know if it's a correct approach and how to put the newly instatiated item back to the container.
Any suggestions?
