Snackbar is not dismissing on swipe
i have a snackbar in my appcompat activity. It has a button OK which dismiss the snackbar.It is working perfact. but i can't dismiss the snackbar on swipe(left to right). Following is my code for snackbar.... final Snackbar snackbar = Snackbar .make(view, "Error Message", Snackbar.LENGTH_INDEFINITE); snackbar.setAction("OK", new View.OnClickListener() { @Override public void onClick(View view) { snackbar.dismiss(); } }); snackbar.show(); Edit 1 I have Relative layout as parent layout in my activity's XML layout. Snackbar needs a CoordinatorLayout as its root layout or some where on top of it,