【发布时间】:2019-05-31 16:49:36
【问题描述】:
我使用RecyclerView 和ConstrainLayout 来列出所有这样的文件
但是当文本很长时,不知何故第一行和第二行之间的空间增加了(上图)。我不知道到底是什么问题。这是我的代码:
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>
奖励:
【问题讨论】:
标签: android android-layout textview