# Selection controls: switches
[Selection controls](https://material.io/components/selection-controls#usage)
allow the user to select options.
[Switches](https://m3.material.io/components/switch/overview) toggle the state
of a single setting on or off. They are the preferred way to adjust settings on
mobile devices.

**Contents**
* [Design and API Documentation](#design-and-api-documentation)
* [Using switches](#using-switches)
* [Switch](#switch)
* [Theming switches](#theming-switches)
## Design and API Documentation
* [Google Material3 Spec](https://material.io/components/switch/overview)
* [API Reference](https://developer.android.com/reference/com/google/android/material/switchmaterial/package-summary)
## Using switches
Before you can use Material switches, you need to add a dependency on 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:** The `MaterialSwitch` widget provides a complete implementation of
Material Design's switch component. It extends from the support library's
`SwitchCompat` widget, but not from the framework `Switch` widget. As such, it
does not auto-inflate, unlike other selection controls, and must be explicitly
specified in layouts.
Use switches to:
* Toggle a single item on or off, on mobile and tablet
* Immediately activate or deactivate something
### Making switches accessible
Switches support content labeling for accessibility and are readable by most
screen readers, such as TalkBack. Text rendered in switches is automatically
provided to accessibility services. Additional content labels are usually
unnecessary.
## Switch
A `Switch` represents a button with two states, on and off. Switches are most
often used on mobile devices to enable and disable options in an options menu. A
switch consists of a track and thumb; the thumb moves along the track to
indicate its current state.
API and source code:
* `MaterialSwitch`
* [Class definition](https://developer.android.com/reference/com/google/android/material/materialswitch/MaterialSwitch)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/materialswitch/MaterialSwitch.java)
**Note:** Since version 1.7.0, the new `MaterialSwitch` class will replace the
obsolete `SwitchMaterial` class. In most cases you should be able to just
replace all `SwitchMaterial` class reference with `MaterialSwitch` to achieve
the default look and feel. Please refer to the following sections if you need to
customize the new styles.
**Note:** For the old `SwitchMaterial` documentation, please refer to
[Switch (deprecated)](#switch-deprecated) and
[Theming switches (deprecated)](#theming-switches-deprecated).
### Switches example
The following example shows a list of five switches.

In the layout:
```xml
```
In code:
```kt
// To check a switch
materialSwitch.isChecked = true
// To listen for a switch's checked/unchecked state changes
materialSwitch.setOnCheckedChangeListener { buttonView, isChecked
// Responds to switch being checked/unchecked
}
```
## Anatomy and key properties
The following is an anatomy diagram that shows a switch thumb and a switch
track:

1. Track
2. Thumb
3. Icon (optional)
### Switch attributes
Element | Attribute | Related method(s) | Default value
-------------- | ------------------- | --------------------------------- | -------------
**Min height** | `android:minHeight` | `setMinHeight`
`getMinHeight` | `?attr/minTouchTargetSize`
### Thumb attributes
Element | Attribute | Related method(s) | Default value
--------- | --------------- | ----------------------------------------- | -------------
**Thumb** | `android:thumb` | `setThumbDrawable`
`getThumbDrawable` | `@drawable/mtrl_switch_thumb`
**Color** | `app:thumbTint` | `setThumbTintList`
`getThumbTintList` | `?attr/colorOutline` (unchecked)
`?attr/colorOnPrimary` (checked)
### Icon attributes
You can add an optional icon to enhance the on/off indication of your custom
switch by assigning `app:thumbIcon`. This icon will be centered and displayed on
top of the thumb drawable.
Element | Attribute | Related method(s) | Default value
--------- | ------------------- | ------------------------------------------------- | -------------
**Icon** | `app:thumbIcon` | `setThumbIconDrawable`
`getThumbIconDrawable` | `null`
**Size** | `app:thumbIconSize` | `setThumbIconSize`
`getThumbIconSize` | `16dp`
**Color** | `app:thumbIconTint` | `setThumbIconTintList`
`getThumbIconTintList` | `?attr/colorSurfaceContainerHighest` (unchecked)
`?attr/colorOnPrimaryContainer` (checked)
### Track attributes
Element | Attribute | Related method(s) | Default value
-------------------- | ------------------------- | ------------------------------------------------------------- | -------------
**Track** | `app:track` | `setTrackDrawable`
`getTrackDrawable` | `@drawable/mtrl_switch_track`
**Color** | `app:trackTint` | `setTrackTintList`
`getTrackTintList` | `?attr/colorSurfaceContainerHighest` (unchecked)
`?attr/colorPrimary` (checked)
**Decoration** | `app:trackDecoration` | `setTrackDecorationDrawable`
`getTrackDecorationDrawable` | `@drawable/mtrl_switch_track_decoration`
(Shows an outline of the track.)
**Decoration color** | `app:trackDecorationTint` | `setTrackDecorationTintList`
`getTrackDecorationTintList` | `?attr/colorOutline` (unchecked)
`@android:color/transparent` (checked)
### Text label attributes
Element | Attribute | Related method(s) | Default value
-------------- | ------------------------ | ----------------------------------------- | -------------
**Text label** | `android:text` | `setText`
`getText` | `null`
**Color** | `android:textColor` | `setTextColor`
`getTextColors` | `?android:attr/textColorPrimaryDisableOnly`
**Typography** | `android:textAppearance` | `setTextAppearance` | `?attr/textAppearanceBodyMedium`
**Padding** | `app:switchPadding` | `setSwitchPadding`
`getSwitchPadding` | `16dp`
### Switch states
Switches can be on or off. Switches have enabled, hover, focused, and pressed
states.

### Styles
Element | Style
----------------- | ------------------------------------------------
**Default style** | `Widget.Material3.CompoundButton.MaterialSwitch`
Default style theme attribute: `?attr/materialSwitchStyle`
See the full list of
[styles](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/materialswitch/res/values/styles.xml)
and
[attrs](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/materialswitch/res/values/attrs.xml).
## Theming switches
Switches support
[Material Theming](https://material.io/components/selection-controls#theming),
which can customize color and typography.
### Switch theming example
The following example shows a list of switches with Material Theming.

#### Implementing switch theming
Use theme attributes in `res/values/styles.xml`, which applies to all switches
and affects other components:
```xml
```
Use default style theme attributes, styles and theme overlays, which apply to
all switches but do not affect other components:
```xml
```
Use the styles in the layout, which affects only this switch:
```xml
```
## Switch (deprecated)
### Switches example (deprecated)
API and source code:
* `SwitchMaterial`
* [Class definition](https://developer.android.com/reference/com/google/android/material/switchmaterial/SwitchMaterial)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/switchmaterial/SwitchMaterial.java)
The following example shows a list of five switches.

In the layout:
```xml
```
In code:
```kt
// To check a switch
switchmaterial.isChecked = true
// To listen for a switch's checked/unchecked state changes
switchmaterial.setOnCheckedChangeListener { buttonView, isChecked
// Responds to switch being checked/unchecked
}
```
## Anatomy and key properties (deprecated)
The following is an anatomy diagram that shows a switch thumb and a switch
track:

1. Thumb
2. Track
### Switch attributes (deprecated)
Element | Attribute | Related method(s) | Default value
-------------------------- | ------------------------------------------ | ---------------------------------------------------------- | -------------
**To use material colors** | `app:useMaterialThemeColors` | `setUseMaterialThemeColors`
`isUseMaterialThemeColors` | `true` (ignored if specific tint attrs are set)
**Min size** | `android:minWidth`
`android:minHeight` | `(set/get)MinWidth`
`(set/get)MinHeight` | `?attr/minTouchTargetSize`
The color of the switch defaults to using `?attr/colorPrimary`,
`?attr/colorPrimaryContainer`, `?attr/colorOnSurface`, and `?attr/colorOutline`
defined in your app theme. If you want to override this behavior, as you might
with a custom drawable that should not be tinted, set
`app:useMaterialThemeColors` to `false`:
```xml
```
### Thumb attributes (deprecated)
Element | Attribute | Related method(s) | Default value
------------- | --------------- | ----------------------------------------- | -------------
**Thumb** | `android:thumb` | `setThumbDrawable`
`getThumbDrawable` | inherits from `SwitchCompat`
**Color** | `app:thumbTint` | `setThumbTintList`
`getThumbTintList` | `?attr/colorOnSurface` (unchecked)
`?attr/colorPrimary` (checked)
**Elevation** | N/A | N/A | `4dp`
### Track attributes (deprecated)
Element | Attribute | Related method(s) | Default value
--------- | --------------- | ----------------------------------------- | -------------
**Track** | `app:track` | `setTrackDrawable`
`getTrackDrawable` | inherits from `SwitchCompat`
**Color** | `app:trackTint` | `setTrackTintList`
`getTrackTintList` | `?attr/colorOutline` (unchecked)
`?attr/colorPrimaryContainer` (checked)
### Text label attributes (deprecated)
Element | Attribute | Related method(s) | Default value
-------------- | ------------------------ | ---------------------------------- | -------------
**Text label** | `android:text` | `setText`
`getText` | `null`
**Color** | `android:textColor` | `setTextColor`
`getTextColors` | `?android:attr/textColorPrimaryDisableOnly`
**Typography** | `android:textAppearance` | `setTextAppearance` | `?attr/textAppearanceBodyMedium`
### Switch states (deprecated)
Switches can be on or off. Switches have enabled, hover, focused, and pressed
states.
Display the outer radial reaction only on form factors that use touch, where
interaction may obstruct the element completely.
For desktop, the radial reaction isn't needed.

### Styles (deprecated)
Element | Style
----------------- | ----------------------------------------
**Default style** | `Widget.Material3.CompoundButton.Switch`
Default style theme attribute: `?attr/switchStyle`
See the full list of
[styles](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/switchmaterial/res/values/styles.xml)
and
[attrs](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/switchmaterial/res/values/attrs.xml).
## Theming switches (deprecated)
Switches support
[Material Theming](https://material.io/components/selection-controls#theming),
which can customize color and typography.
### Switch theming example (deprecated)
API and source code:
* `SwitchMaterial`
* [Class definition](https://developer.android.com/reference/com/google/android/material/switchmaterial/SwitchMaterial)
* [Class source](https://github.com/material-components/material-components-android/tree/master/lib/java/com/google/android/material/switchmaterial/SwitchMaterial.java)
The following example shows a list of switches with Material Theming.

#### Implementing switch theming (deprecated)
Use theme attributes in `res/values/styles.xml`, which applies to all switches
and affects other components:
```xml
```
Use default style theme attributes, styles and theme overlays, which apply to
all switches but do not affect other components:
```xml
```
Use the styles in the layout, which affects only this switch:
```xml
```