Banner - is there a built-in view?

Viewed 2382

Is there an existing View in Android for a banner? Or do I need to build one myself using the specs?
To be clear, this is not for ads but for the Material-Design concept of Banner.

1 Answers

You should build your activity layout to show a banner using TextView and Buttons. There is no banner component.

Personally, I prefer using Snackbar messages for actions

Related