matecode / Snacky

Snacky is a small library to help you adding a Snackbar to your android project.
Apache License 2.0
485 stars 47 forks source link

Dismiss the Snackbar? #18

Open adampatel opened 6 years ago

adampatel commented 6 years ago

Is it possible to dismiss the Snackbar on an event?

Is there a dismiss() method I can call or something?

stephanepechard commented 5 years ago

The Snackbar object inherits from android.support.design.widget.BaseTransientBottomBar so you can call [dismiss()](https://developer.android.com/reference/android/support/design/widget/BaseTransientBottomBar.html#dismiss()) on it. It closes the Snackbar as expected.