-
-
Notifications
You must be signed in to change notification settings - Fork 18
SimpleColorWheelDialog

extends CustomViewDialog
API reference | Examples |
---|
A dialog with a stylish and intuitive HSV color picker.
For general usage see SimpleDialog.
Additional methods are provided to specify the initial color (color
), whether an alpha channel is allowed (alpha
), whether to show the hex text input (hideHexInput
) etc.
Please refer to the API reference for a comprehensive documentation of these methods.
For general usage see SimpleDialog.
The extras
Bundle returned will contain the following additional keys:
@ColorInt int color = extras.getInt(SimpleColorWheelDialog.COLOR); // The color chosen
SimpleColorWheelDialog.build()
.color(0x80e9a11d)
.alpha(true)
.show(this, COLOR_DIALOG); |
![]() |
SimpleColorWheelDialog.build()
.color(0xFFCF4747)
.alpha(false)
.hideHexInput(true)
.show(this, COLOR_DIALOG); |
![]() |
Javadoc API
Screenshot gallery
Styling dialogs with themes
Fullscreen dialogs
SimpleDialog
CustomViewDialog
CustomListDialog
SimpleCheckDialog
SimpleColorDialog
SimpleColorWheelDialog
SimpleDateDialog
SimpleEMailDialog
SimpleFormDialog
SimpleImageDialog
SimpleInputDialog
SimpleListDialog
SimplePinDialog
SimpleProgressDialog
SimpleTimeDialog