IllegalStateException: Can not perform this action after onSaveInstanceState with ViewPager

Please check my answer here. Basically I just had to : Don’t make the call to super() on the saveInstanceState method. This was messing things up… This is a known bug in the support package. If you need to save the instance and add something to your outState Bundle you can use the following: In the end the proper solution was (as seen in the … Read more