# Print output for @column tags ?> WebView.VisualStateCallback - Android SDK | Android Developers

Most visited


Recently visited


WebView.VisualStateCallback

public static abstract class WebView.VisualStateCallback
extends Object

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


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

Summary


Public constructors

VisualStateCallback()

Public methods

abstract void onComplete(long requestId)

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

Inherited methods

Public constructors


VisualStateCallback

public VisualStateCallback ()

Public methods


onComplete

public abstract void onComplete (long requestId)

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

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