Searched defs:zoom (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DWebSettings.java176 * Sets whether the WebView should support zooming using its on-screen zoom
177 * controls and gestures. The particular zoom mechanisms that should be used
182 * @param support whether the WebView should support zoom
189 * Gets whether the WebView supports zoom.
191 * @return true if the WebView supports zoom
199 * Sets whether the WebView should use its built-in zoom mechanisms. The
200 * built-in zoom mechanisms comprise on-screen zoom controls, which are
205 * The built-in mechanisms are the only currently supported zoom
208 * @param enabled whether the WebView should use its built-in zoom mechanism
425 setDefaultZoom(ZoomDensity zoom) argument
[all...]
H A DZoomManager.java32 * The ZoomManager is responsible for maintaining the WebView's current zoom
33 * level state. It is also responsible for managing the on-screen zoom controls
36 * Currently, there are two methods for animating the zoom of a WebView.
39 * length animation where the final zoom scale is known at startup. This type of
56 // Widgets responsible for the on-screen zoom functions of the WebView.
62 * default zoom scale.
84 * picture from webkit and use that width to enter into zoom overview mode.
89 * When in the zoom overview mode, the page's width is fully fit to the
93 * mode, but this value should only be modified by changes to the zoom
101 * These variables track the center point of the zoom an
403 private boolean zoom(float zoomMultiplier) { method in class:ZoomManager
[all...]
H A DWebSettingsClassic.java661 * Set the double-tap zoom of the page in percent. Default is 100.
662 * @param doubleTapZoom A percent value for increasing or decreasing the double-tap zoom.
672 * Get the double-tap zoom of the page in percent.
673 * @return A percent value describing the double-tap zoom.
683 public void setDefaultZoom(ZoomDensity zoom) { argument
684 if (mDefaultZoom != zoom) {
685 mDefaultZoom = zoom;
686 mWebView.adjustDefaultZoomDensity(zoom.value);
1564 * the UI to zoom in and out of an image, so it is set false by default.

Completed in 51 milliseconds