SnackBar icon indicating copy to clipboard operation
SnackBar copied to clipboard

toast-like alert pattern for Android inspired by the Google Material Design Spec

Results 13 SnackBar issues
Sort by recently updated
recently updated
newest added

Caused by: java.lang.UnsupportedOperationException: Binary XML file line #7: You must supply a layout_width attribute. at android.content.res.TypedArray.getLayoutDimension(TypedArray.java:779) at android.view.ViewGroup$LayoutParams.setBaseAttributes(ViewGroup.java:8147) at android.view.ViewGroup$MarginLayoutParams.(ViewGroup.java:8339) at android.widget.FrameLayout$LayoutParams.(FrameLayout.java:439) at android.widget.FrameLayout.generateLayoutParams(FrameLayout.java:370) at android.widget.FrameLayout.generateLayoutParams(FrameLayout.java:56) at android.view.LayoutInflater.rInflate(LayoutInflater.java:865) at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:824)...

SnackbarManager.show(Snackbar.with(mContext).text("MSG") .eventListener(new SnackBarObserver() { @Override public void onShow(Snackbar snackbar) { actionButton.showWithSnackHeight(snackbar.getHeight()); } @Override public void onDismiss(Snackbar snackbar) { actionButton.showWithSnackHeight(0); } }).duration(500)); FloatingActionButton is always slower than SnackBar

Hey there, I am trying to implement the Snackbar in a Fragment. The problem is I don't know how to initialize "root". I am not sure what is it.. Your...

Hello ! I can't get the snackbar to show in lollipop. It works fine in Jelly bean. Anybody know what's the issue ? Regards !

The snackbar reveal animation is more of a fade and slide in as opposed to a pure slide from the bottom like it is now. Check the video here: http://material-design.storage.googleapis.com/publish/v_2/material_ext_publish/0B0NGgBg38lWWZFcwa2wyTG1ybE0/components-snackbarstoasts-spec-061302_Mobile_Snackbar_xhdpi_002.webm

When using the fragment usage, what is the behavior? IS the behavior dependent on whether on a tablet (float offset from lower left corner) or small device (against bottom, pushing...