- 当 TextView 太长时布局中断

-Layout breaks when TextView is too long

我正在使用 RecyclerViewConstrainLayout 来列出所有这样的文件

但不知何故当文本较长时,第一行和第二行之间的space增加了(上图)。我不知道到底是什么问题。这是我的代码:

item.xml:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/layoutItem"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:foreground="?android:attr/selectableItemBackground">

        <ImageView
            android:id="@+id/imgFile"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="4dp"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="4dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:srcCompat="@drawable/ic_folder" />

        <TextView
            android:id="@+id/txtFileName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginTop="4dp"
            android:layout_marginBottom="4dp
            app:layout_constraintBottom_toTopOf="@+id/txtLastModified"
            app:layout_constraintStart_toEndOf="@+id/imgFile"
            app:layout_constraintTop_toTopOf="parent" />

        <TextView
            android:id="@+id/txtLastModified"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginBottom="4dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toEndOf="@+id/imgFile"
            app:layout_constraintTop_toBottomOf="@+id/txtFileName" />

        <TextView
            android:id="@+id/txtAdditionalInfo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="12dp"
            app:layout_constraintBottom_toBottomOf="@+id/txtLastModified"
            app:layout_constraintStart_toEndOf="@+id/txtLastModified"
            app:layout_constraintTop_toTopOf="@+id/txtLastModified" />

    </android.support.constraint.ConstraintLayout>

奖金:

textview 'txtFileName'

添加 android:maxLines="1"