1

I was watching an Android Dev Summit video on Material Components recently (https://www.youtube.com/watch?v=DPH3F0v1jB0) and I noticed they presented something cool with the example email app. Is there something built into Material components to achieve this rounded content below the action bar? The only way I know would be using shapes etc., but then it will cut into the content when scrolling.

enter image description here

Veles
  • 1,512
  • 4
  • 14
  • 28
  • It is called Backdrop: https://material.io/components/backdrop You need to implement it by Yourself or use one of libraries (You can find them easily on GitHub) because there is no official component. – OMIsie11 May 10 '20 at 10:38
  • Just use a container with rounded corners. For example a card view with only top [corners rounded](https://stackoverflow.com/questions/51178933/cardview-with-different-corner-radius/57837141#57837141) or a LinearLayout with [rounded corners](https://stackoverflow.com/questions/51178933/cardview-with-different-corner-radius/57837141#57837141). – Gabriele Mariotti May 10 '20 at 13:35

1 Answers1

0

As OMIsie11 says the element in question is https://material.io/components/backdrop

Veles
  • 1,512
  • 4
  • 14
  • 28