Android TextView 不会用多行紧紧地包裹文本,而是坚持使用 maxWidth

Android TextView does not hug text tightly with multiple lines, sticks to maxWidth instead

我正在创建一个聊天气泡,我注意到当您的 TextView 的文本跨越多行时,框的宽度锁定到(在本例中)maxWidth。这可能会导致右侧出现空隙:

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:maxWidth="100dp"
        android:padding="4dp"
        android:text="this is a pretty short sentence"/>

正如你所看到的,右边有一个很大的白色缺口。没有 maxWidth 它适合一条线并且紧贴:

如何做到当文本跨越多行时框仍然紧紧地拥抱文本?我已经尝试了很多东西,但这可能吗?

想要的结果:

更新:

android:justificationMode="inter_word"

导致文本适合框而不是框适合文本,这更难看:

在 TextView XML 中,您可以使用:

android:justificationMode="inter_word"

事实证明,通过子类化 TextView 并重写 onMeasure() 很容易解决这个问题。它甚至可以在布局编辑器中使用。性能也完全没有问题:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    //call super first so you can call getLineCount(), getLineMax()) and getMeasuredHeight() below
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);

    //if more than 1 line set width equal to that of the largest line
    int lineCount = getLayout().getLineCount();
    if (lineCount > 1) {
        //get the width of the largest line
        float lineWidth = 0;
        for (int i = 0; i < lineCount; i++) {
            lineWidth = Math.max(lineWidth, getLayout().getLineMax(i));
        }
        //set largest line width + horizontal padding as width and keep the height the same
        setMeasuredDimension((int) Math.ceil(lineWidth) + getPaddingLeft() + getPaddingRight(), getMeasuredHeight());
    }
}