Since: API Level 2.5
public static interface

ColorPickerInterfaces.Listeners.OnColorDialogListener

com.droidux.pack.commons.interfaces.ColorPickerInterfaces.Listeners.OnColorDialogListener

Class Overview

Represents a listener to be notified when events are raised by color dialogs.

Summary

Public Methods
abstract void onColorChanged(DialogInterface dialog, int color)
Called when the color has changed.
abstract void onColorSelected(DialogInterface dialog, int color)
Called when new color has been selected.

Public Methods

public abstract void onColorChanged (DialogInterface dialog, int color)

Since: API Level 2.5

Called when the color has changed.

Parameters
dialog The dialog that shows the color selection.
color The new color.

public abstract void onColorSelected (DialogInterface dialog, int color)

Since: API Level 2.5

Called when new color has been selected.

Parameters
dialog The dialog that shows the color selection.
color The selected color.