Android - How do I keep a sticky snackbar when a new snackbar appears?
I have a sticky Snackbar (Snackbar.LENGTH_INDEFINITE).
In some cases, there is another temporary Snackbar (either long or short) that should appear as well.
The new temporary Snackbar automatically dismisses the sticky one. I would like to keep the sticky one behind the temporary one, so that when the temporary Snackbar disappears, the sticky one is still shown.
Any ideas on how to do that?