Most visited

Recently visited

Added in API level 23

WebView.VisualStateCallback

public static abstract class WebView.VisualStateCallback
extends Object

java.lang.Object
   ↳ android.webkit.WebView.VisualStateCallback


Callback interface supplied to postVisualStateCallback(long, WebView.VisualStateCallback) for receiving notifications about the visual state.

Summary

Public constructors

WebView.VisualStateCallback()

Public methods

abstract void onComplete(long requestId)

Invoked when the visual state is ready to be drawn in the next onDraw(Canvas).

Inherited methods

From class java.lang.Object

Public constructors

WebView.VisualStateCallback

Added in API level 23
WebView.VisualStateCallback ()

Public methods

onComplete

Added in API level 23
void onComplete (long requestId)

Invoked when the visual state is ready to be drawn in the next onDraw(Canvas).

Parameters
requestId long: The identifier passed to postVisualStateCallback(long, WebView.VisualStateCallback) when this callback was posted.

Hooray!