2015-10-21 67 views

回答

12

它默認只支持2線最多。如果您想增加它,您可以通過以下方式更改設置QuickBar文本視圖的最大行數的屬性。

View yourSnackBarView = snackbar.getView(); //get your snackbar view 
TextView textView = (TextView) snackbarView.findViewById(android.support.design.R.id.snackbar_text); //Get reference of snackbar textview 
textView.setMaxLines(3); // Change your max lines 
0

是的,這是可能的。你可以嘗試在你的行之間加上「\ n」。 (雖然它可能不會好看把多條線路上的小吃吧)

例子:

Snackbar.make(view, "This is first line\nThis is second line", Snackbar.LENGTH_SHORT).show(); 
相關問題