Display Snackbar without CoordinatorLayout
问题 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 have tried following way to achieve snackbar without CoordinatorLayout but it will display following result. Snackbar.make(getActivity().getWindow().getDecorView().getRootView(), "Testing Snackbar", Snackbar.LENGTH_LONG).show(); Test it with android 8.0 Oreo Is there any way to achieve Snackbar without CoordinatorLayout? Thanks