I have Displayed Snackbar using CoordinatorLayout but in some layout i did\'t used CoordinatorLayout layout and i want to display snackbar but faced problem with it.
I h
use this view instance of CoordinatorLayout:
View view = findViewById(android.R.id.content); Snackbar snackbar = Snackbar.make(view, "your text", Snackbar.LENGTH_SHORT); snackbar.show();