Bottom Sheets in Material Design

What is Bottom Sheet

Yugandhar
Android App Development for beginners
2 min readSep 15, 2016

--

  • A bottom sheet is a sheet that slides up from the bottom edge of the screen.
  • Bottom sheets are displayed as a result of user triggered action, and also it can reveal additional content by swiping up.

Bottom sheets are added to the Android Support Library in v23.2.0 version.

Bottom sheets have two use cases:

  • Persistent Bottom Sheet
  • Modal Bottom Sheet

Persistent Bottom Sheet

Persistent bottom sheets remain visible on the screen. You can convert any view in your layout to a persistent bottom sheet.

For persistent bottom sheet to work, your layout should contain a coordinator layout, and then in any child view of your coordinator layout, you can make it as a persistent bottom sheet by adding a custom property “app:layout_behavior”.

Modal Bottom Sheet

Modal bottom sheets are dialogs which are alternatives to content choosers, simple menus, and dialogs.

--

--