public final class ExpandableInfoCustomization extends Customization
Created by Ran Haveshush on 01/10/2018.
| Constructor and Description |
|---|
ExpandableInfoCustomization() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBorderColor() |
int |
getBorderWidth() |
java.lang.String |
getExpandedStateIndicatorColor() |
java.lang.String |
getHeadingTextColor() |
java.lang.String |
getHeadingTextFontName() |
int |
getHeadingTextFontSize() |
java.lang.String |
getHighlightedBackgroundColor() |
void |
setBorderColor(java.lang.String hexColorCode)
Sets the color for the border.
|
void |
setBorderWidth(int borderWidth)
Sets the width of the border between the heading text and the info text.
|
void |
setExpandStateIndicatorColor(java.lang.String hexColorCode)
Sets the color of the expand state indicator.
|
void |
setHeadingTextColor(java.lang.String hexColorCode)
Sets the heading text color.
|
void |
setHeadingTextFontName(java.lang.String fontName)
Sets the heading text font type.
|
void |
setHeadingTextFontSize(int fontSize)
Sets the heading text font size.
|
void |
setHighlightedBackgroundColor(java.lang.String hexColorCode)
Sets the highlighted background color of the heading.
|
getTextColor, getTextFontName, getTextFontSize, parseHexColorCode, parseTypeface, setTextColor, setTextFontName, setTextFontSizepublic java.lang.String getHeadingTextColor()
public void setHeadingTextColor(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 getHeadingTextFontName()
public void setHeadingTextFontName(java.lang.String fontName)
throws InvalidInputException
fontName - The heading text font type name.InvalidInputException - This exception shall be thrown if an input parameter is invalid.public int getHeadingTextFontSize()
public void setHeadingTextFontSize(int fontSize)
throws InvalidInputException
fontSize - The heading text font size.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.public java.lang.String getExpandedStateIndicatorColor()
public void setExpandStateIndicatorColor(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.