I have a FragmentPagerAdapter used to show about 6 tabs, all of which load their data from a web server. One of the tabs contains a WebView that loads an image from my server. The server side costs of generating the image are high, and thus I want to reduce the number of calls to reload the WebView. For the non-WebView tabs, I have been able to save my state (for those, just a simple array) and restore them as tabs get swiped through.
Problem:
- WebView reloads every time I swipe back to it using FragmentPagerAdapter, leading to high reload times and high load on my web server.
Solutions Considered:
- Use ViewPager.setOffscreenPageLimit() This is problematic because it will force more tabs to be loaded, even if they are never going to be viewed. This is needlessly expensive on my server.
- Use WebView.saveState() and WebView.restoreState() The documentation has been updated to make it clear display state is no longer maintained here, so this is no longer useful for this scenario.
- Set my activity to have: android:configChanges="keyboardHidden|orientation|screenSize" This works for the rotation case, but doesn't affect the ViewPager/FragmentPagerAdapter swiping through tabs case.
It sounds like the old behavior of WebView.saveState() would have been perfect...
WebViewitself is oblivious to pagers and fragments, so somebody somewhere is doing something to theWebViewto trigger the reload. Then, you can work on trying to suppress this behavior. – CommonsWare Jan 27 at 21:18FragmentPagerAdapter.FragmentPagerAdapteris an "Implementation of PagerAdapter that represents each page as a Fragment that is persistently kept in the fragment manager as long as the user can return to the page." "In onCreateView, I have the following" -- have you determined thatonCreateView()is being called each time you swipe, even for a previously-viewed page? – CommonsWare Jan 27 at 21:33