I have SnackBar with text but i need more than one line.
this is my code:
import android.support.design.widget.Snackbar;
final String snack = "LINE1\nLINE2\nLINE3";
Snackbar.make(view, snack, Snackbar.LENGTH_LONG).show();
there is a way to do it with SnackBar?