We are loading Android Webview with local HTMLs and all resources in sdcard. As HTMLs are heavy (around 1MB per page) so we are working over preloading strategy means having webview instances already loaded in memory.
Over UI, we have Horizontal scrollview with series of Linear Layouts of Webview.
Preloading strategy works for all devices apart from Nexus7. On Nexus7, webpages are getting loaded but not displayable. Means when i swipe to next page then it first shows blank screen then it shows WebPage. But for other devices, it doesn't show blank page even.
We have tried all params like hardware acceleration, DOMCacheEnabled and other parameters. We need to avoid blank screen so that as soon as user swipes to next page, he can see the HTML directly rather than first blank page then HTML.
Please suggest if there is anything else we can use.