I am developing an android application. In that I want to display material design Snackbar in dialog. Is it possible? If yes then how?
Please help me.
Thanks
Yes, you can.
To show Snackbar inside your Dialog create custom View for it. You can read more about it here: Dialogs/Creating a Custom Layout
Snackbar
Dialog
View
Then for showing Snackbar invoke Snackbar.make((dialogView, "text", duration)) where dialogView is your custom view.
Snackbar.make((dialogView, "text", duration))
dialogView