Home | History | Annotate | Download | only in webkit

Lines Matching refs:webview

30  * Manages settings state for a WebView. When a WebView is first created, it
33 * WebView.getSettings() is tied to the life of the WebView. If a WebView has
73 * Enum for specifying the WebView's desired density.
138 // WebView associated with this WebSettings.
139 private WebView mWebView;
311 WebSettings(Context context, WebView webview) {
314 mWebView = webview;
430 * Set whether the WebView supports zoom
438 * Returns whether the WebView supports zoom
445 WebView is used.
453 * Returns true if the zoom mechanism built into WebView is being used.
460 * Enable or disable file access within WebView. File access is enabled by
468 * Returns true if this WebView supports file access.
475 * Set whether the WebView loads a page with overview mode.
482 * Returns true if this WebView loads page with overview mode
489 * Set whether the WebView uses its background for over scroll background.
490 * If true, it will use the WebView's background. If false, it will use an
498 * Returns true if this WebView uses WebView's background instead of
506 * Store whether the WebView is saving form data.
513 * Return whether the WebView is saving form data.
520 * Store whether the WebView is saving password.
527 * Return whether the WebView is saving password.
539 if (WebView.mLogEvent && mTextSize != t ) {
612 * Tell the WebView about user-agent string.
613 * @param ua 0 if the WebView should use an Android user-agent string,
614 * 1 if the WebView should use a desktop user-agent string.
641 * @return int 0 if the WebView is using an Android user-agent string.
642 * 1 if the WebView is using a desktop user-agent string.
643 * -1 if the WebView is using user defined user-agent string.
660 * Tell the WebView to use the wide viewport
670 * @return True if the WebView is using a wide viewport
677 * Tell the WebView whether it supports multiple windows. TRUE means
678 * that {@link WebChromeClient#onCreateWindow(WebView, boolean,
689 * @return True if the WebView is supporting multiple windows. This means
690 * that {@link WebChromeClient#onCreateWindow(WebView, boolean,
699 * WebView.
935 * Tell the WebView to load image resources automatically.
936 * @param flag True if the WebView should load images automatically.
946 * Return true if the WebView will load image resources automatically.
948 * @return True if the WebView loads images automatically.
955 * Tell the WebView to block network images. This is only checked when
959 * @param flag True if the WebView should block network images.
970 * Return true if the WebView will block network images. The default is
972 * @return True if the WebView blocks network images.
979 * Tell the WebView to block all network load requests. If you set the
980 * value to false, you must call {@link android.webkit.WebView#reload} to
983 * @param flag True if the WebView should block all network loads.
984 * @see android.webkit.WebView#reload
994 * Return true if the WebView will block all network loads. The default is
996 * @return True if the WebView blocks all network loads.
1016 * Tell the WebView to enable javascript execution.
1017 * @param flag True if the WebView should execute javascript.
1027 * Tell the WebView to enable plugins.
1028 * @param flag True if the WebView should load plugins.
1038 * Tell the WebView to enable, disable, or have plugins on demand. On
1052 * Set a custom path to plugins used by the WebView. This method is
1093 * Tell the WebView to enable Application Caches API.
1094 * @param flag True if the WebView should enable Application Caches.
1130 * @param flag boolean True if the WebView should use the database storage
1142 * @param flag boolean True if the WebView should use the DOM storage
1162 * the current WebView.
1178 * Tell the WebView to enable WebWorkers API.
1179 * @param flag True if the WebView should enable WebWorkers.
1283 * Set the WebView's user-agent string. If the string "ua" is null or empty,
1308 * Return the WebView's user-agent string.
1346 * Tell the WebView whether it needs to set a node to have focus when
1347 * {@link WebView#requestFocus(int, android.graphics.Rect)} is called.