Does anyone know if there's a means to have a webview open with an image completely visible (full-size) initially? The images in question are larger than the screen resolution so they would be scaled with a bar where the scales don't match. When I set:
zoomView.getSettings().setLoadWithOverviewMode(true);
zoomView.getSettings().setSupportZoom(true);
zoomView.getSettings().setUseWideViewPort(true);
I get the image zoomed to the max width, leaving some scrolling necessary at max zoom (can't see the whole image).
Ideally I'd love to just use the built-in Honeycomb gallery3d functionality, but unfortunately I can't find the source to see how they pull that off.