如果文本太长,为什么Snackbar文本会消失?

时间:2018-11-09 18:44:53

标签: android material-design material-ui snackbar

我需要使用Android中的标准Snackbar添加一些用户反馈。

我注意到,如果我的文本太长,则整个文本字符串都会消失。而不是省略号...

更具体地说;在Pixel 2模拟器上,以下字符串消失了:

“您处于离线状态。请检查您的连接,然后重试。” -消失了

但是如果我删除最后一个字符,它将显示:

“您处于离线状态。请检查您的连接,然后重试。”-显示

更糟糕的是,在屏幕较小的设备上,将显示的文本长度减少了,例如在Nexus 5仿真器上的含义:

“您处于离线状态。请检查您的连接,然后重试。”-现在不显示

但是如果我进一步缩短:

“您处于离线状态。请检查您的连接”-显示

这对我来说就像个虫子。

我知道Snackbar应该用于非常短的文本,但是它也不应该任意删除文本。它至少应显示一些文本或椭圆形或多行显示。

还有其他人注意到这一点吗?或者可以建议这是一个错误还是我错过了什么?

代码示例:

Snackbar.make(findViewById(R.id.placeSnackBar),
        "You're offline. Check your connection and try again.",
        Snackbar.LENGTH_INDEFINITE)
        .setAction("X", View.OnClickListener { }).show()

我也尝试过:

val sb = Snackbar.make(this, message, Snackbar.LENGTH_INDEFINITE)
        .setActionTextColor(Color.parseColor("#666666"))
        .setAction("X", View.OnClickListener { })

sb.view.setBackgroundColor(Color.WHITE)
sb.view.findViewById<TextView>(android.support.design.R.id.snackbar_text)
        //.setTextColor(Color.parseColor("#F44336"))
        .setTextColor(Color.parseColor("#000000"))
sb.view.findViewById<TextView>(android.support.design.R.id.snackbar_text)
        .singleLine = false
sb.view.findViewById<TextView>(android.support.design.R.id.snackbar_text)
        .maxLines = 2
sb.show()

用于协调器布局的XML,它在浮动页脚布局上方显示小吃店:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.CoordinatorLayout
            android:id="@+id/message_bar_container"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_above="@+id/llFooter" />

        <LinearLayout
            android:id="@+id/llFooter"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:layout_alignParentBottom="true"
            android:background="@drawable/footer_background"
            android:orientation="horizontal"
            android:paddingStart="20dp"
            android:paddingEnd="20dp">

            <TextView
                android:id="@+id/login_forgot_password"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_weight="1"
 ...
 />

            <Button
                android:id="@+id/btn_login"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
...
   />

        </LinearLayout>

    </RelativeLayout>

完整字符串的外观:

enter image description here

如果我将字符串缩短1个字符:

enter image description here

1 个答案:

答案 0 :(得分:0)

通过访问其TextView将快餐栏行设置为2:

val message = "You're offline. Check your connection and try again.";
val sb = Snackbar.make(
    findViewById(R.id.newLinearLayout),
    "You're offline. Check your connection and try again.",
    Snackbar.LENGTH_INDEFINITE)
    .setAction("X") {}
val view = sb.view
val textView = view.findViewById<View>(android.support.design.R.id.snackbar_text) as TextView
textView.maxLines = 2
sb.show()