首页 > 解决方案 > -TextView 太长时布局中断

问题描述

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

点我

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

项目.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>

奖金:

布局

标签: androidandroid-layouttextview

解决方案


添加android:maxLines="1"textviewtxtFileName”


推荐阅读