# Floating action buttons
A
[floating action button (FAB)](https://material.io/components/buttons-floating-action-button)
represents the primary action of a screen.

**Contents**
* [Using FABs](#using-fabs)
* [FABs](#fabs)
* [Small FABs](#small-fabs)
* [Large FABs](#large-fabs)
* [Extended FABs](#extended-fabs)
* [Theming FABs](#theming-fabs)
## Using FABs
A FAB performs the primary, or most common, action on a screen. It appears in
front of all screen content, typically as a boxy shape with an icon in its
center.
Before you can use Material FABs, you need to add a dependency to the Material
Components for Android library. For more information, go to the
[Getting started](https://github.com/material-components/material-components-android/tree/master/docs/getting-started.md)
page.
**Note:** If the `FloatingActionButton` is a child of a `CoordinatorLayout`, you get
certain behaviors for free. It will automatically shift so that any displayed
`Snackbar`s do not cover it, and will automatically hide when covered by an
`AppBarLayout` or `BottomSheetBehavior`.
### Making FABs accessible
You should set a content description on a FAB via the
`android:contentDescription` attribute or `setContentDescription` method so that
screen readers like TalkBack are able to announce their purpose or action. Text
rendered in Extended FABs is automatically provided to accessibility services,
so additional content labels are usually unnecessary.
### Visibility
Use the `show` and `hide` methods to animate the visibility of a
`FloatingActionButton` or an `ExtendedFloatingActionButton`. The show animation
grows the widget and fades it in, while the hide animation shrinks the widget
and fades it out.
```kt
// To show:
fab.show()
// To hide:
fab.hide()
```
### Extending and Shrinking
Use the `extend` and `shrink` methods to animate showing and hiding the text of
an `ExtendedFloatingActionButton`. The extend animation extends the FAB to show
the text and the icon. The shrink animation shrinks the FAB to show just the
icon.
```kt
// To extend:
extendedFab.extend()
// To shrink:
extendedFab.shrink()
```
### Sizing FABs
The `FloatingActionButton` can be sized either by using the discrete sizing
modes, a custom size, or for the large FAB by applying the desired style.
There are three `app:fabSize` modes:
* `normal` - the normal sized button, 56dp.
* `mini` - the small sized button, 40dp.
* `auto` (default) - the button size will change based on the window size. For
small sized windows (largest screen dimension < 470dp) this will select a
small sized button, and for larger sized windows it will select a normal
sized button.
Or, you can set a custom size via the `app:fabCustomSize` attribute. If set,
`app:fabSize` will be ignored, unless the custom size is cleared via the
`clearCustomSize` method.
If you'd like to use the large FAB, apply one of these style attributes:
* `?attr/floatingActionButtonLargeStyle`
* `?attr/floatingActionButtonLargePrimaryStyle`
* `?attr/floatingActionButtonLargeSecondaryStyle`
* `?attr/floatingActionButtonLargeTertiaryStyle`
* `?attr/floatingActionButtonLargeSurfaceStyle`
### Types
There are four types of FABS: 1\. [FABs](#fabs), 2\. [Small FABs](#small-fabs),
3\. [Large FABs](#large-fabs)

And 4\. [Extended FABs](#extended-fabs)

## FABs
FABs are the default size and style for a primary action button.
API and source code:
* `FloatingActionButton`
* [Class description](https://developer.android.com/reference/com/google/android/material/floatingactionbutton/FloatingActionButton)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/FloatingActionButton.java)
### FAB example
The following example shows a regular FAB with a plus icon.

In the layout:
```xml
```
In code:
```kt
fab.setOnClickListener {
// Respond to FAB click
}
```
#### Anatomy

A regular FAB has a container and an icon.
1. Container
1. Icon
## Small FABs
A small FAB should be used on smaller screens.
Small FABs can also be used to create visual continuity with other screen
elements.
API and source code:
* `FloatingActionButton`
* [Class description](https://developer.android.com/reference/com/google/android/material/floatingactionbutton/FloatingActionButton)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/FloatingActionButton.java)
### Small FAB example
The following example shows a small FAB with a plus icon.

In the layout:
```xml
```
In code:
```kt
fab.setOnClickListener {
// Respond to FAB click
}
```
#### Anatomy

A small FAB has a container and an icon.
1. Container
1. Icon
## Large FABs
A large FAB is useful when the layout calls for a clear and primary action that
the user is most likely to take, and where a larger footprint would help them to
engage. For example, when appearing on taller and larger device screens.
API and source code:
* `FloatingActionButton`
* [Class description](https://developer.android.com/reference/com/google/android/material/floatingactionbutton/FloatingActionButton)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/FloatingActionButton.java)
### Large FAB example
The following example shows a large FAB with a plus icon.

In the layout:
```xml
```
In code:
```kt
fab.setOnClickListener {
// Respond to FAB click
}
```
#### Anatomy

A large FAB has a container and an icon.
1. Container
1. Icon
### Regular, small, and large FAB key properties
#### Container attributes
Element | Attribute | Related method(s) | Default value
----------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------- | -------------
**Color** | `app:backgroundTint` | `setBackgroundTintList`
`getBackgroundTintList` | `?attr/colorPrimaryContainer` (see all [states](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/color/res/color/m3_button_background_color_selector.xml))
**Stroke** | `app:borderWidth` | N/A | `0dp`
**Size** | `app:fabSize`
`app:fabCustomSize` | `setSize`
`setCustomSize`
`clearCustomSize`
`getSize`
`getCustomSize` | `auto`
**Shape** | `shapeAppearance`
`shapeAppearanceOverlay` | `setShapeAppearanceModel`
`getShapeAppearanceModel` | `ShapeAppearanceOverlay.Material3.FloatingActionButton`
**Elevation** | `app:elevation` | `setElevation`
`getCompatElevation` | `6dp`
**Hovered/Focused elevation** | `app:hoveredFocusedTranslationZ` | `setCompatHoveredFocusedTranslationZ`
`getCompatHoveredFocusedTranslationZ` | `2dp`
**Pressed elevation** | `app:pressedTranslationZ` | `setCompatPressedTranslationZ`
`getCompatPressedTranslationZ` | `6dp`
**Ripple** | `app:rippleColor` | `setRippleColor`
`getRippleColor`
`getRippleColorStateList` | variations of `?attr/colorOnPrimaryContainer`, see all [states](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/color/res/color/m3_button_ripple_color_selector.xml)
**Motion** | `app:showMotionSpec`
`app:hideMotionSpec` | `set*MotionSpec`
`set*MotionSpecResource`
`get*MotionSpec` | `@null`
#### Icon attributes
Element | Attribute | Related method(s) | Default value
--------- | --------------- | ----------------------------------------------------------- | -------------
**Icon** | `app:srcCompat` | `setImageDrawable`
`setImageResource`
`getDrawable` | `null`
**Color** | `app:tint` | `setImageTintList`
`getImageTintList` | `?attr/colorOnPrimaryContainer` (see all [states](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/color/res/color/m3_button_foreground_color_selector.xml))
#### Styles
Element | Style
----------------- | ------------------------------------------------
**Default style** | `Widget.Material3.FloatingActionButton.Primary`
Default style theme attribute: `?attr/floatingActionButtonStyle`
See the full list of
[styles](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/res/values/styles.xml)
and
[attrs](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/res/values/attrs.xml).
## Extended FABs
The extended FAB is wider, and it includes a text label.
**Note:** `ExtendedFloatingActionButton` is a child class of
[`MaterialButton`](Button.md), rather than `FloatingActionButton`. This means
that several attributes which are applicable to `FloatingActionButton` have
different naming in `ExtendedFloatingActionButton`. For example,
`FloatingActionButton` uses `app:srcCompat` to set the icon drawable, whereas
`ExtendedFloatingActionButton` uses `app:icon`. See the
[attributes tables](#anatomy-and-key-properties) below for more details.
API and source code:
* `ExtendedFloatingActionButton`
* [Class description](https://developer.android.com/reference/com/google/android/material/floatingactionbutton/ExtendedFloatingActionButton)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/ExtendedFloatingActionButton.java)
### Extended FAB example
The following example shows an extended FAB with a plus icon.

In the layout:
```xml
```
In code:
```kt
extendedFab.setOnClickListener {
// Respond to Extended FAB click
}
```
### Anatomy and key properties

An extended FAB has a text label, a transparent container and an optional icon.
1. Container
2. Text label
3. Icon (Optional)
#### Container attributes
Element | Attribute | Related method(s) | Default value
----------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------ | -------------
**Color** | `app:backgroundTint` | `setBackgroundTintList`
`getBackgroundTintList` | `?attr/colorPrimaryContainer` (see all [states](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/color/res/color/m3_button_background_color_selector.xml))
**Stroke color** | `app:strokeColor` | `setStrokeColor`
`getStrokeColor` | `null`
**Stroke width** | `app:strokeWidth` | `setStrokeWidth`
`getStrokeWidth` | `0dp`
**Size** | `app:collapsedSize` | N/A |
**Shape** | `app:shapeAppearance`
`app:shapeAppearanceOverlay` | `setShapeAppearanceModel`
`getShapeAppearanceModel` | `ShapeAppearanceOverlay.Material3.FloatingActionButton`
**Elevation** | `app:elevation` | `setElevation`
`getElevation` | `6dp`
**Hovered/Focused elevation** | `app:hoveredFocusedTranslationZ` | N/A | `2dp`
**Pressed elevation** | `app:pressedTranslationZ` | N/A | `6dp`
**Ripple** | `app:rippleColor` | | variations of `?attr/colorOnPrimaryContainer`, see all [states](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/color/res/color/m3_button_ripple_color_selector.xml)
**Motion** | `app:showMotionSpec`
`app:hideMotionSpec`
`extendMotionSpec`
`shrinkMotionSpec` | `set*MotionSpec`
`set*MotionSpecResource`
`get*MotionSpec` | see [animators](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/res/animator)
#### Icon attributes
Element | Attribute | Related method(s) | Default value
--------------------------------- | ----------------- | --------------------------------------------------------- | -------------
**Icon** | `app:icon` | `setIcon`
`setIconResource`
`getIcon` | `null`
**Color** | `app:iconTint` | `setIconTint`
`setIconTintResource`
`getIconTint` | `?attr/colorOnPrimaryContainer` (see all [states](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/color/res/color/m3_button_foreground_color_selector.xml))
**Size** | `app:iconSize` | `setIconSize`
`getIconSize` | `24dp`
**Padding between icon and text** | `app:iconPadding` | `setIconPadding`
`getIconPadding` | `12dp`
#### Text label
Element | Attribute | Related method(s) | Default value
-------------- | ------------------------ | --------------------------------- | -------------
**Text label** | `android:text` | `setText`
`getText` | `null`
**Color** | `android:textColor` | `setTextColor`
`getTextColor` | `?attr/colorPrimaryContainer` (see all [states](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/color/res/color/m3_button_foreground_color_selector.xml))
**Typography** | `android:textAppearance` | `setTextAppearance` | `?attr/textAppearanceLabelLarge`
#### Styles
Element | Style
----------------------------------------- | -----
**Default style** | `Widget.Material3.ExtendedFloatingActionButton.Icon.Primary`
**Text-only when**
**extended style** | `Widget.Material3.ExtendedFloatingActionButton.Primary`
Default style theme attribute: `?attr/extendedFloatingActionButtonStyle`
See the full list of
[styles](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/res/values/styles.xml)
and
[attrs](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/res/values/attrs.xml).
## Theming FABs
### FAB theming example
API and source code:
* `FloatingActionButton`
* [Class description](https://developer.android.com/reference/com/google/android/material/floatingactionbutton/FloatingActionButton)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/FloatingActionButton.java)
* `ExtendedFloatingActionButton`
* [Class description](https://developer.android.com/reference/com/google/android/material/floatingactionbutton/ExtendedFloatingActionButton)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/floatingactionbutton/ExtendedFloatingActionButton.java)
The following example shows a regular, small, and extended FAB with Material
Theming.

#### Implementing FAB theming
Use theme attributes and styles in `res/values/styles.xml` to add themes to all
FABs. This affects other components:
```xml
```
Use a default style theme attribute, styles and a theme overlay. This themes all
FABs in your app but does not affect other components:
```xml
```
Use one of the styles in the layout. That affects only this FAB:
```xml
```