Jeff wrote: > When loading a page with WebView, images seem to appear one at a time > as they are downloaded or loaded from the cache. This gives the user > more of a "browser" type of experience instead of an "app" type of > experience. > > Is there a way to make WebView wait until all images are ready on a > page before displaying the entire page?
As I wrote when you asked this yesterday: At least for your initial page, you can make it invisible to start, then use a WebViewClient and onPageFinished() to find out when the page is fully-loaded, then make it visible. I've used this in conjunction with a custom RotateAnimation progress indicator, for example. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Beginning Android 2_ from Apress Now Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

