ExpandableFab

class ExpandableFab : FloatingActionButton

The design and behavior of a Floating Action Button which can animate and expand to show optional FabOptions when clicked. It's the focal point for the ExpandableFab widget's functionality, from an end-user's perspective.

Developer Notes:

  1. Layout_width and layout_height should be set to wrap_content, unless you're setting custom dimensions.

  2. ExpandableFabs must be defined within an ExpandableFabLayout to function properly.

  3. label.labelText must be non-null for the optional label to show and other label properties to take effect.

Implementation Notes:

  1. Since the Kotlin 'internal' modifier translates to 'public' in Java, the JvmSynthetic annotation is used on those functions and properties to hide them from the published API for Java clients. A proper solution to this issue would be a package-private visibility modifier, but Kotlin has yet to implement it (https://youtrack.jetbrains.com/issue/KT-29227). Until then, the JvmSynthetic annotations should remain in order to present the proper published API to both Java & Kotlin clients.

Since

1.0.0

Constructors

ExpandableFab
Link copied to clipboard
fun ExpandableFab(context: Context, orientation: Orientation? = Orientation.PORTRAIT)

Used to create an ExpandableFab programmatically (do not use the other constructor ExpandableFab(context, attributeSet) - it is for use by the Android framework when inflating an ExpandableFab via XML). This constructor keeps all optional properties of an ExpandableFab and its optional label at their default values, though you can always change these values after instantiation by using the appropriate setter methods (with the exception of orientation, which cannot be changed after instantiation).

ExpandableFab
Link copied to clipboard
fun ExpandableFab(context: Context, attributeSet: AttributeSet)

Called by the system when creating an ExpandableFab via XML (don't call this directly). To create an ExpandableFab programmatically, use the ExpandableFab(context, orientation) constructor.

Functions

hide
Link copied to clipboard
open override fun hide()

Hides the ExpandableFab and optional label.

setOnClickListener
Link copied to clipboard
open override fun setOnClickListener(onClickListener: View.OnClickListener?)

Registers a callback to be invoked when this ExpandableFab or its label is clicked. The default behavior the ExpandableFab will be executed before this custom callback.

setSize
Link copied to clipboard
open override fun setSize(size: Int)

Sets the size of the ExpandableFab. Overridden to ensure we never set the size to be FabSize.CUSTOM.

show
Link copied to clipboard
open override fun show()

Shows the ExpandableFab and optional label.

Properties

closingAnimationDurationMs
Link copied to clipboard
var closingAnimationDurationMs: Long = 500L

The duration (in milliseconds as a positive long) of the ExpandableFab's closing animations. Set to 0L if you don't want closing animations played. Default value is 500L.

closingAnticipateTension
Link copied to clipboard
var closingAnticipateTension: Float = 2f

The tension (as a positive float) applied on the ExpandableFab's icon to mimic an AnticipateInterpolator when it's playing its closing animations. An AnticipateInterpolator allows us to have a closing animation where the ExpandableFab's icon will begin rotating slightly backwards, before smoothly rotating forward to its default 0 degree rotation. Every multiple of 10f will be a full 360 degree rotation backwards. Default value is 2f.

efabColor
Link copied to clipboard
var efabColor: Int

The color of the ExpandableFab, as an integer in the form 0xAARRGGBB.

efabEnabled
Link copied to clipboard
var efabEnabled: Boolean = true

The enabled state of this ExpandableFab and its label. Disabled ExpandableFabs and labels will be visually distinct and unclickable. Default value is true (enabled).

efabIcon
Link copied to clipboard
var efabIcon: Drawable?

The drawable to show as the ExpandableFab's icon. Default value is a white plus sign vector drawable.

efabSize
Link copied to clipboard
var efabSize: FabSize

The size of this ExpandableFab (NOT its FabOptions. For that, see property fabOptionSize). Must be FabSize.MINI, FabSize.NORMAL, FabSize.AUTO or FabSize.CUSTOM. FabSize.CUSTOM should be used when you're setting the size of the ExpandableFab's layout_width and layout_height to a custom value manually (when using CUSTOM, make sure to also set app:fabCustomSize equal to your custom layout_width/layout_height size and app:maxImageSize equal to your icon size in order to ensure your icon is centered properly). Default value is FabSize.NORMAL.

fabOptionPosition
Link copied to clipboard
var fabOptionPosition: FabOptionPosition

How each FabOption in this orientation will be positioned relative to the previous FabOption. Default value is FabOptionPosition.ABOVE.

fabOptionSize
Link copied to clipboard
var fabOptionSize: FabSize

The size of each FabOption in this orientation (NOT the size of the ExpandableFab. For that, see property efabSize). Must be FabSize.MINI, FabSize.NORMAL, FabSize.AUTO or FabSize.CUSTOM. FabSize.CUSTOM should be used when you're setting the size of the FabOptions' layout_width and layout_height to a custom value manually (when using CUSTOM, make sure to also set app:fabCustomSize equal to your custom layout_width/layout_height size and app:maxImageSize equal to your icon size in order to ensure your icon is centered properly). Default value is FabSize.MINI.

firstFabOptionMarginPx
Link copied to clipboard
var firstFabOptionMarginPx: Float = 80f

The margin (in pixels as a positive float) between the first FabOption in this orientation and the ExpandableFab itself. Depending on the size you set for the ExpandableFab, you may want this margin to be different than successiveFabOptionMarginPx. Default value is 80f.

iconAnimationRotationDeg
Link copied to clipboard
var iconAnimationRotationDeg: Float

A float, in degrees, representing how much the ExpandableFab's icon will rotate when animating. When opening, the ExpandableFab will rotate from 0 to this value. When closing, the icon will rotate from this value to its initial position of 0. Default value is -135f.

label
Link copied to clipboard
val label: Label

The optional label attached to this ExpandableFab. The label will only be shown when its labelText is not null. Default values for the label are as follows:

openingAnimationDurationMs
Link copied to clipboard
var openingAnimationDurationMs: Long = 250L

The duration (in milliseconds as a positive long) of the ExpandableFab's opening animations. Set to 0L if you don't want opening animations played. Default value is 250L.

orientation
Link copied to clipboard
var orientation: Orientation

The Orientation this ExpandableFab is viewable in. Default value is Orientation.PORTRAIT.

successiveFabOptionMarginPx
Link copied to clipboard
var successiveFabOptionMarginPx: Float = 75f

The margin (in pixels as a positive float) between successive FabOptions in this ExpandableFab orientation. See firstFabOptionMarginPx if trying to set the margin between the first FabOption in this orientation and the ExpandableFab itself. Default value is 75f.