Android - 无法将视图设置为卡片内的 match_parent 高度以进行回收器视图
Posted
技术标签:
【中文标题】Android - 无法将视图设置为卡片内的 match_parent 高度以进行回收器视图【英文标题】:Android - Can't set view to match_parent height inside card for recycler view 【发布时间】:2021-10-28 16:49:54 【问题描述】:我有一个回收站视图,它的左侧边缘有一个颜色条(视图),它应该占据卡片的整个高度。
我尝试将颜色视图的高度设置为 match_parent,但如果我这样做,颜色将永远不会出现。如果我改为为高度分配一个数字,那么它可以工作,但我需要视图来调整卡片的高度。
这里是卡片的 XML,它将提供给回收站视图:
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_>
<androidx.cardview.widget.CardView
android:layout_
android:layout_
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" >
<RelativeLayout
android:layout_
android:layout_
android:paddingEnd="14dp"
>
<View
android:id="@+id/swatch"
android:layout_
android:layout_ />
<TextView
android:id="@+id/pathTitle"
android:layout_
android:layout_
android:layout_toEndOf="@id/swatch"
android:layout_marginStart="8dp"
android:layout_marginTop="14dp"
android:padding="2dp"
android:text="@string/placeholder_title"
android:textColor="@android:color/black"
android:textSize="14sp" />
<TextView
android:id="@+id/pathDescription"
android:layout_
android:layout_
android:layout_below="@id/pathTitle"
android:layout_toEndOf="@id/swatch"
android:layout_marginStart="8dp"
android:layout_marginBottom="14dp"
android:padding="2dp"
android:text="@string/placeholder_title"
android:textColor="@android:color/black"
android:textSize="14sp" />
</RelativeLayout>
</androidx.cardview.widget.CardView>
</androidx.constraintlayout.widget.ConstraintLayout>
如何让“样本”视图调整到卡片的高度?
【问题讨论】:
ConstraintLayout 中的视图不应使用 match_parent 作为宽度/高度。请改用 0dp。此外,最好避免使用RelativeLayout。 ConstraintLayout 可以代替处理布局并更有效地完成。 【参考方案1】:希望它能解决你的问题
<androidx.cardview.widget.CardView
android:layout_
android:layout_
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
>
<LinearLayout
android:layout_
android:layout_
android:orientation="horizontal"
>
<View
android:id="@+id/swatch"
android:layout_
android:layout_ />
<LinearLayout
android:layout_
android:layout_
android:orientation="vertical">
<TextView
android:id="@+id/pathTitle"
android:layout_
android:layout_
android:layout_marginStart="8dp"
android:layout_marginTop="14dp"
android:padding="2dp"
android:text="@string/placeholder_title"
android:textColor="@android:color/black"
android:textSize="14sp" />
<TextView
android:id="@+id/pathDescription"
android:layout_
android:layout_
android:layout_marginStart="8dp"
android:layout_marginBottom="14dp"
android:padding="2dp"
android:text="@string/placeholder_title"
android:textColor="@android:color/black"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
【讨论】:
以上是关于Android - 无法将视图设置为卡片内的 match_parent 高度以进行回收器视图的主要内容,如果未能解决你的问题,请参考以下文章
Android:NullPointerException 无法将数据库加载到片段内的列表视图中