Added in API level 1

JsPromptResult

open class JsPromptResult : JsResult
kotlin.Any
   ↳ android.webkit.JsResult
   ↳ android.webkit.JsPromptResult

Public class for handling JavaScript prompt requests. The WebChromeClient will receive a WebChromeClient#onJsPrompt(WebView, String, String, String, JsPromptResult) call with a JsPromptResult instance as a parameter. This parameter is used to return the result of this user dialog prompt back to the WebView instance. The client can call cancel() to cancel the dialog or confirm() with the user's input to confirm the dialog.

Summary

Public methods
open Unit
confirm(result: String!)

Handle a confirmation response from the user.

Inherited functions

Public methods

confirm

Added in API level 1
open fun confirm(result: String!): Unit

Handle a confirmation response from the user.