androidOnRenderProcessResponsive method

Future<WebViewRenderProcessAction?>? androidOnRenderProcessResponsive(
  1. Uri? url
)

Event called once when an unresponsive renderer currently associated with the WebView becomes responsive.

After a WebView renderer becomes unresponsive, which is notified to the application by androidOnRenderProcessUnresponsive, it is possible for the blocking renderer task to complete, returning the renderer to a responsive state. In that case, this method is called once to indicate responsiveness.

No action is taken by WebView as a result of this method call.

NOTE: available only on Android 29+.

Official Android API: https://developer.android.com/reference/android/webkit/WebViewRenderProcessClient#onRenderProcessResponsive(android.webkit.WebView,%20android.webkit.WebViewRenderProcess)

Implementation

Future<WebViewRenderProcessAction?>? androidOnRenderProcessResponsive(
    Uri? url) {
  return null;
}