Top "Android-snackbar" questions

Snackbars provide lightweight feedback about an operation.

Custom theme interferes with snackbar background color

Trying out the new Design Support Library, I added a snackbar; but unlike its main background, the text area is …

android material-design android-design-library androiddesignsupport android-snackbar
Snack bar not displayed

I'm inheriting from BaseActivity for all the other activities. public class BaseActivity extends AppCompatActivity { public static CoordinatorLayout coordinatorLayout; @Override protected …

android android-snackbar
Can I display material design Snackbar in dialog?

I am developing an android application. In that I want to display material design Snackbar in dialog. Is it possible? …

android material-design android-snackbar
How can a Snackbar be shown from a fragment in the correct view?

In my fragment, I perform: mActionHelper.showUndoBar(getView(), itemsList, lastPositionSelected); The showUndoBar() method simply creates a Snackbar with the form: …

android android-fragments android-snackbar
Floating Action Button Not Going up when Snack bar is Showing in android

I am Using Snack bar and FAB in my application Same Page,Whenever Snackbar is Showing Floating Action button not …

android floating-action-button android-snackbar
Testing Snackbar show with Espresso

Is there a way to test using Espresso that the snackbar shows up with the right text? I have a …

android integration-testing android-testing android-espresso android-snackbar
Snackbar with CoordinatorLayout disable dismiss

I am using the support FloatingActionButton Snackbar CoordinatorLayout I need the CoordinatorLayout so that if SnackBar is shown the FloatingActionButton …

android android-coordinatorlayout android-snackbar
Android: MVVM is it possible to display a message (toast/snackbar etc.) from the ViewModel

I want to know what is the best approach to display some sort of message in the view from the …

android-toast android-snackbar android-mvvm
Showing a Snackbar from inside a Service

When showing a SnackBar from inside an Activity, I have the rootView available. But I need to show a SnackBar …

android android-layout service android-snackbar
Changing typeface of Snackbar

I build Snackbar by this code: Snackbar sb = Snackbar.make(drawer, "message", Snackbar.LENGTH_LONG) .setAction("action", new View.OnClickListener() { @…

java android android-snackbar