How to show Snackbar at top of the screen
It is possible to make the snackbar appear on top of the screen using this: Snackbar snack = Snackbar.make(parentLayout, str, Snackbar.LENGTH_LONG); View view = snack.getView(); FrameLayout.LayoutParams params =(FrameLayout.LayoutParams)view.getLayoutParams(); params.gravity = Gravity.TOP; view.setLayoutParams(params); snack.show(); From the OP: I had to change the first line: Snackbar snack = Snackbar.make(findViewById(android.R.id.content), “Had a snack at Snackbar”, Snackbar.LENGTH_LONG);