Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb000a68 authored by Mikhail Naganov's avatar Mikhail Naganov
Browse files

Update JavaDoc for WebSettings.{get|set}UseWideViewPort

Based on a black-box inspection of WebView behavior.

Change-Id: I8823dab9ef2302cf7d11abec87a64e854db9e116
parent 0ada5d65
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -594,18 +594,25 @@ public abstract class WebSettings {
    }

    /**
     * Tells the WebView to use a wide viewport. The default is false.
     * Sets whether the WebView should enable support for the "viewport"
     * HTML meta tag or should use a wide viewport.
     * When the value of the setting is false, the layout width is always set to the
     * width of the WebView control in device-independent (CSS) pixels.
     * When the value is true and the page contains the viewport meta tag, the value
     * of the width specified in the tag is used. If the page does not contain the tag or
     * does not provide a width, then a wide viewport will be used.
     *
     * @param use whether to use a wide viewport
     * @param use whether to enable support for the viewport meta tag
     */
    public synchronized void setUseWideViewPort(boolean use) {
        throw new MustOverrideException();
    }

    /**
     * Gets whether the WebView is using a wide viewport.
     * Gets whether the WebView supports the "viewport"
     * HTML meta tag or will use a wide viewport.
     *
     * @return true if the WebView is using a wide viewport
     * @return true if the WebView supports the viewport meta tag
     * @see #setUseWideViewPort
     */
    public synchronized boolean getUseWideViewPort() {