Last active
January 23, 2020 20:26
-
-
Save miracleyoo/b6bf975798b611c6b81a2c6f1061e890 to your computer and use it in GitHub Desktop.
[Android Snackbar w/o View]#Java #Android #GUI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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