Package org.mozilla.geckoview
Class GeckoSession.PromptDelegate.ColorPrompt
Object
org.mozilla.geckoview.GeckoSession.PromptDelegate.BasePrompt
org.mozilla.geckoview.GeckoSession.PromptDelegate.ColorPrompt
- Enclosing interface:
- GeckoSession.PromptDelegate
public static class GeckoSession.PromptDelegate.ColorPrompt
extends GeckoSession.PromptDelegate.BasePrompt
ColorPrompt contains the information necessary to represent a prompt for color input
generated by content.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.mozilla.geckoview.GeckoSession.PromptDelegate.BasePrompt
GeckoSession.PromptDelegate.BasePrompt.Observer
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal String
The default value supplied by content.final String[]
The predefined values by <datalist> elementFields inherited from class org.mozilla.geckoview.GeckoSession.PromptDelegate.BasePrompt
title
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ColorPrompt
(String id, String title, String defaultValue, String[] predefinedValues, GeckoSession.PromptDelegate.BasePrompt.Observer observer) -
Method Summary
Modifier and TypeMethodDescriptionConfirms the prompt and passes the color value back to content.Methods inherited from class org.mozilla.geckoview.GeckoSession.PromptDelegate.BasePrompt
confirm, dismiss, getDelegate, isComplete, setDelegate
-
Field Details
-
defaultValue
The default value supplied by content. -
predefinedValues
The predefined values by <datalist> element
-
-
Constructor Details
-
ColorPrompt
protected ColorPrompt(@NonNull String id, @Nullable String title, @Nullable String defaultValue, @Nullable String[] predefinedValues, @NonNull GeckoSession.PromptDelegate.BasePrompt.Observer observer)
-
-
Method Details
-
confirm
Confirms the prompt and passes the color value back to content.- Parameters:
color
- A String representing the color to be returned to content.- Returns:
- A
GeckoSession.PromptDelegate.PromptResponse
which can be used to complete theGeckoResult
associated with this prompt.
-