WebViewRenderProcess
public
abstract
class
WebViewRenderProcess
extends Object
java.lang.Object | |
↳ | androidx.webkit.WebViewRenderProcess |
WebViewRenderProcess provides an opaque handle to a WebView renderer.
Summary
Public constructors | |
---|---|
WebViewRenderProcess()
|
Public methods | |
---|---|
abstract
boolean
|
terminate()
Cause this renderer to terminate. |
Inherited methods | |
---|---|
Public constructors
WebViewRenderProcess
public WebViewRenderProcess ()
Public methods
terminate
public abstract boolean terminate ()
Cause this renderer to terminate.
Calling this on a not yet started, or an already terminated renderer will have no effect.
Terminating a renderer process may have an effect on multiple
WebView
instances.
RenderProcess termination must be handled by properly overriding
WebViewClient.onRenderProcessGone(WebView, RenderProcessGoneDetail)
for every WebView that shares this
renderer. If termination is not handled by all associated WebViews, then the application
process will also be terminated.
This method should only be called if
WebViewFeature.isFeatureSupported(String)
returns true for WebViewFeature.WEB_VIEW_RENDERER_TERMINATE
.
Returns | |
---|---|
boolean |
true if it was possible to terminate this renderer, false otherwise.
|