Skip to content

Instantly share code, notes, and snippets.

@miracleyoo
Last active January 23, 2020 20:26
Show Gist options
  • Save miracleyoo/b6bf975798b611c6b81a2c6f1061e890 to your computer and use it in GitHub Desktop.
Save miracleyoo/b6bf975798b611c6b81a2c6f1061e890 to your computer and use it in GitHub Desktop.
[Android Snackbar w/o View]#Java #Android #GUI
// 3 ways to start a snackbar without pass in a view.
Snackbar.make(mapFragment.getView(), "Click the pin for more options", Snackbar.LENGTH_LONG).show();
getWindow().getDecorView().getRootView();
Snackbar.make(getWindow().getDecorView().getRootView(), "Click the pin for more options", Snackbar.LENGTH_LONG).show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment