Tom Finet
Tom Finet

Reputation: 2136

How to add ListView to snackbar?

While playing with the youtube app I noticed this view appear when I clicked a button:

enter image description here

Is this a snackbar (white view at the bottom of screen) and if so how do I customise a normal snackbar to look like it?

Upvotes: 2

Views: 788

Answers (1)

Pztar
Pztar

Reputation: 4779

These are bottom sheets, specifically modal bottom sheets. See the documentation here: https://material.google.com/components/bottom-sheets.html?authuser=0#bottom-sheets-modal-bottom-sheets

You'll need to add a LinearLayout that acts as your BottomSheet to a parent view of a CoordinatorLayout

Upvotes: 1

Related Questions