Java android.webkit WebChromeClient fields, constructors, methods, implement or subclass

Example usage for Java android.webkit WebChromeClient fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.webkit WebChromeClient.

The text is from its open source code.

Subclass

android.webkit.WebChromeClient has subclasses.
Click this link to see all its subclasses.

Constructor

Method

BitmapgetDefaultVideoPoster()
When not playing, video elements are represented by a 'poster' image.
ViewgetVideoLoadingProgressView()
Obtains a View to be displayed while buffering of full screen video is taking place.
voidgetVisitedHistory(ValueCallback callback)
Obtains a list of all visited history items, used for link coloring
voidonCloseWindow(WebView window)
Notify the host application to close the given WebView and remove it from the view system if necessary.
booleanonConsoleMessage(ConsoleMessage consoleMessage)
Report a JavaScript console message to the host application.
booleanonCreateWindow(WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg)
Request the host application to create a new window.
voidonExceededDatabaseQuota(String url, String databaseIdentifier, long quota, long estimatedDatabaseSize, long totalQuota, WebStorage.QuotaUpdater quotaUpdater)
Tell the client that the quota has been exceeded for the Web SQL Database API for a particular origin and request a new quota.
voidonGeolocationPermissionsHidePrompt()
Notify the host application that a request for Geolocation permissions, made with a previous call to #onGeolocationPermissionsShowPrompt(String,GeolocationPermissions.Callback) onGeolocationPermissionsShowPrompt() has been canceled.
voidonGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback)
Notify the host application that web content from the specified origin is attempting to use the Geolocation API, but no permission state is currently set for that origin.
voidonHideCustomView()
Notify the host application that the current page has exited full screen mode.
booleanonJsAlert(WebView view, String url, String message, JsResult result)
Tell the client to display a javascript alert dialog.
booleanonJsBeforeUnload(WebView view, String url, String message, JsResult result)
Tell the client to display a dialog to confirm navigation away from the current page.
booleanonJsConfirm(WebView view, String url, String message, JsResult result)
Tell the client to display a confirm dialog to the user.
booleanonJsTimeout()
Tell the client that a JavaScript execution timeout has occured.
voidonProgressChanged(WebView view, int newProgress)
Tell the host application the current progress of loading a page.
voidonReachedMaxAppCacheSize(long requiredStorage, long quota, WebStorage.QuotaUpdater quotaUpdater)
Notify the host application that the Application Cache has reached the maximum size.
voidonReceivedIcon(WebView view, Bitmap icon)
Notify the host application of a new favicon for the current page.
voidonReceivedTitle(WebView view, String title)
Notify the host application of a change in the document title.
voidonReceivedTouchIconUrl(WebView view, String url, boolean precomposed)
Notify the host application of the url for an apple-touch-icon.
voidonRequestFocus(WebView view)
Request display and focus for this WebView.
voidonShowCustomView(View view, CustomViewCallback callback)
Notify the host application that the current page has entered full screen mode.