Class HighlightInformation
java.lang.Object
com.github.lgooddatepicker.zinternaltools.HighlightInformation
HighlightInformation, Instances of this class are returned from a HighlightPolicy to indicate
that a date should be highlighted. When a date should not be highlighted, then the
HighlightPolicy should return null.
You may (optionally) fill out the fields in the HighlightInformation class to give any particular
highlighted day a unique background color, foreground color, or tooltip text. If the color fields
are null, then the default highlighting colors will be used. If the tooltip field is null (or
empty), then no tooltip will be displayed.
-
Field Summary
FieldsModifier and TypeFieldDescriptioncolorBackground, This will be used as the background on the highlight date.colorText, This will be used to color the text (the date number) on the highlight date.tooltipText, This text will be displayed as a "hover tooltip" on the highlighted date. -
Constructor Summary
ConstructorsConstructorDescriptionConstructor, Default.HighlightInformation
(Color colorBackground) Constructor, With a background color only.HighlightInformation
(Color colorBackground, Color colorText) Constructor, With all color fields.HighlightInformation
(Color colorBackground, Color colorText, String tooltipText) Constructor, With all fields. -
Method Summary
-
Field Details
-
colorBackground
colorBackground, This will be used as the background on the highlight date. If this field is null, then a default color will be used. The default color is retrieved from "DatePickerSettings.colorBackgroundHighlightedDates". (If the default has not been changed, it will be "Color.green".) -
colorText
colorText, This will be used to color the text (the date number) on the highlight date. If this field is null, then a default color will be used. The default is "Color.black". -
tooltipText
tooltipText, This text will be displayed as a "hover tooltip" on the highlighted date. If this field is null or empty, then no tooltip will be displayed.
-
-
Constructor Details
-
HighlightInformation
public HighlightInformation()Constructor, Default. -
HighlightInformation
Constructor, With a background color only. -
HighlightInformation
Constructor, With all color fields. -
HighlightInformation
Constructor, With all fields.
-