After working with WebView for a while, and then moving back to standard Views, zooming and scrolling seems quite complicated. Are there any ways of using the same zoom and scrollcontrols for any View group, (builtInZoomControls, Horizontal and Vertical Scrollbar, Double tap to zoom out and pinch zooming) or are there any workarounds like an SDK or jar. file that will make this possible?
Share
Scrolling is a matter of using widgets that know how to scroll (e.g.,
ListView) or wrapping other widgets and containers in aScrollVieworHorizontalScrollView.Zooming is not normally done except in fairly targeted circumstances (e.g., zooming an image, zooming a map).
For “scrollcontrols”, see above.
There are a few open source classes floating around for zooming an image. Zooming a map is built into
MapView.