Class BadgedButton
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class BadgedButton implements Parcelable
Configuration of the button with a badge.
-
-
Field Summary
Fields Modifier and Type Field Description private ScanbotColor
badgeBackgroundColor
private ScanbotColor
badgeForegroundColor
private Boolean
visible
private ScanbotColor
backgroundColor
private ScanbotColor
foregroundColor
private ScanbotColor
activeBackgroundColor
private ScanbotColor
activeForegroundColor
-
Constructor Summary
Constructors Constructor Description BadgedButton(Map<String, Object> source)
BadgedButton(JSONObject json)
BadgedButton(ScanbotColor badgeBackgroundColor, ScanbotColor badgeForegroundColor, Boolean visible, ScanbotColor backgroundColor, ScanbotColor foregroundColor, ScanbotColor activeBackgroundColor, ScanbotColor activeForegroundColor)
-
Method Summary
Modifier and Type Method Description final ScanbotColor
getBadgeBackgroundColor()
The color of the badge's background. final Unit
setBadgeBackgroundColor(ScanbotColor badgeBackgroundColor)
The color of the badge's background. final ScanbotColor
getBadgeForegroundColor()
The color of the badge's foreground (icon, text). final Unit
setBadgeForegroundColor(ScanbotColor badgeForegroundColor)
The color of the badge's foreground (icon, text). final Boolean
getVisible()
Determines whether the button is visible or not. final Unit
setVisible(Boolean visible)
Determines whether the button is visible or not. final ScanbotColor
getBackgroundColor()
The color of the button's background. final Unit
setBackgroundColor(ScanbotColor backgroundColor)
The color of the button's background. final ScanbotColor
getForegroundColor()
The color of the button's foreground (icon, text). final Unit
setForegroundColor(ScanbotColor foregroundColor)
The color of the button's foreground (icon, text). final ScanbotColor
getActiveBackgroundColor()
The color of the button's background when the button is active (selected, toggled). final Unit
setActiveBackgroundColor(ScanbotColor activeBackgroundColor)
The color of the button's background when the button is active (selected, toggled). final ScanbotColor
getActiveForegroundColor()
The color of the button's foreground (icon, text) when the button is active (selected, toggled). final Unit
setActiveForegroundColor(ScanbotColor activeForegroundColor)
The color of the button's foreground (icon, text) when the button is active (selected, toggled). final JSONObject
toJson()
final static BadgedButton
default()
-
-
Constructor Detail
-
BadgedButton
BadgedButton(JSONObject json)
-
BadgedButton
BadgedButton(ScanbotColor badgeBackgroundColor, ScanbotColor badgeForegroundColor, Boolean visible, ScanbotColor backgroundColor, ScanbotColor foregroundColor, ScanbotColor activeBackgroundColor, ScanbotColor activeForegroundColor)
-
-
Method Detail
-
getBadgeBackgroundColor
final ScanbotColor getBadgeBackgroundColor()
The color of the badge's background. Default is "#FFFFFF"
-
setBadgeBackgroundColor
final Unit setBadgeBackgroundColor(ScanbotColor badgeBackgroundColor)
The color of the badge's background. Default is "#FFFFFF"
-
getBadgeForegroundColor
final ScanbotColor getBadgeForegroundColor()
The color of the badge's foreground (icon, text). Default is "#C8193C"
-
setBadgeForegroundColor
final Unit setBadgeForegroundColor(ScanbotColor badgeForegroundColor)
The color of the badge's foreground (icon, text). Default is "#C8193C"
-
getVisible
final Boolean getVisible()
Determines whether the button is visible or not. Default is true
-
setVisible
final Unit setVisible(Boolean visible)
Determines whether the button is visible or not. Default is true
-
getBackgroundColor
final ScanbotColor getBackgroundColor()
The color of the button's background. Default is "#0000007A"
-
setBackgroundColor
final Unit setBackgroundColor(ScanbotColor backgroundColor)
The color of the button's background. Default is "#0000007A"
-
getForegroundColor
final ScanbotColor getForegroundColor()
The color of the button's foreground (icon, text). Default is "#FFFFFF"
-
setForegroundColor
final Unit setForegroundColor(ScanbotColor foregroundColor)
The color of the button's foreground (icon, text). Default is "#FFFFFF"
-
getActiveBackgroundColor
final ScanbotColor getActiveBackgroundColor()
The color of the button's background when the button is active (selected, toggled). Default is "#FFCE5C"
-
setActiveBackgroundColor
final Unit setActiveBackgroundColor(ScanbotColor activeBackgroundColor)
The color of the button's background when the button is active (selected, toggled). Default is "#FFCE5C"
-
getActiveForegroundColor
final ScanbotColor getActiveForegroundColor()
The color of the button's foreground (icon, text) when the button is active (selected, toggled). Default is "#1C1B1F"
-
setActiveForegroundColor
final Unit setActiveForegroundColor(ScanbotColor activeForegroundColor)
The color of the button's foreground (icon, text) when the button is active (selected, toggled). Default is "#1C1B1F"
-
toJson
final JSONObject toJson()
-
default
final static BadgedButton default()
-
-
-
-