public final class SelectionItemCustomization extends Customization
Created by Ran Haveshush on 01/10/2018.
| Constructor and Description |
|---|
SelectionItemCustomization() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBorderColor() |
int |
getBorderWidth() |
java.lang.String |
getHighlightedBackgroundColor() |
java.lang.String |
getSelectionIndicatorTintColor() |
void |
setBorderColor(java.lang.String hexColorCode)
Sets the color for the border.
|
void |
setBorderWidth(int borderWidth)
Sets the width of the border between the selection items.
|
void |
setHighlightedBackgroundColor(java.lang.String hexColorCode)
Sets the highlighted background color of the selection item.
|
void |
setSelectionIndicatorTintColor(java.lang.String hexColorCode)
Sets the tint color of the selection indicator.
|
getTextColor, getTextFontName, getTextFontSize, parseHexColorCode, parseTypeface, setTextColor, setTextFontName, setTextFontSizepublic java.lang.String getSelectionIndicatorTintColor()
public void setSelectionIndicatorTintColor(java.lang.String hexColorCode)
throws InvalidInputException
hexColorCode - The color code in Hex format. For example "#999999".InvalidInputException - This exception shall be thrown if an input parameter is invalid.public java.lang.String getHighlightedBackgroundColor()
public void setHighlightedBackgroundColor(java.lang.String hexColorCode)
throws InvalidInputException
hexColorCode - String represents the color code in Hex format. For example "#999999".InvalidInputException - This exception shall be thrown if an input parameter is invalid.public java.lang.String getBorderColor()
public void setBorderColor(java.lang.String hexColorCode)
throws InvalidInputException
hexColorCode - The color code in Hex format. For example "#999999".InvalidInputException - This exception shall be thrown if an input parameter is invalid.public int getBorderWidth()
public void setBorderWidth(int borderWidth)
throws InvalidInputException
borderWidth - The width of the border.InvalidInputException - This exception shall be thrown if an input parameter is invalid.