My layout contains a ScrollView with multiple WebViews loading dynamically. The problem I am facing is sometimes few WebViews don't show content even after onPageFinished is called. I have to touch on each WebView to show the content. Its happening randomly on Nexus 5x. To workaround this issue (as suggested in another article), I am doing this from onPageFinished.
webView.scrollTo(0, 1); webView.scrollTo(0, 0); But this also does not help. I even tried calling postInvalidateDelayed(1500) on WebView from onPageFinished, but still it happens. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/android-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/android-developers/30a689f0-6ecd-46a5-89f2-50433409de6f%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

