I am using Google's design support library to show Snackbars. After I compile the apk and run it on phone (Nexus 5), the Snackbar is shown along with the Toast. Running directly from Android Studio works fine (only Snackbar is shown). Any help will be appreciated. How can I disable the toast and only show Snackbar
Asked
Active
Viewed 175 times
1 Answers
2
How can I disable the toast and only show Snackbar
Simply do not use Toast. It will not show up by itself.

Marcin Orlowski
- 72,056
- 11
- 123
- 141
-
1Yeah. I was missing a return statement. My bad. Thanks a lot. – hexhog Jul 14 '15 at 14:54