Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

JsPromptResult

extends JsResult
java.lang.Object
   ↳ android.webkit.JsResult
     ↳ android.webkit.JsPromptResult

Class Overview

Public class for handling JavaScript prompt requests. The WebChromeClient will receive a 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
void confirm ( String result)
Handle a confirmation response from the user.
[Expand]
Inherited Methods
From class android.webkit.JsResult
From class java.lang.Object

Public Methods

public void confirm ( String result)

Added in API level 1

Handle a confirmation response from the user.