如何在线性布局中将两个 CardView 高度作为 wrap_content

Posted

技术标签:

【中文标题】如何在线性布局中将两个 CardView 高度作为 wrap_content【英文标题】:How to make two CardView height as wrap_content in a linear layout 【发布时间】:2021-12-24 01:29:06 【问题描述】:

好的,我解释得很详细,所以应该没有混淆

我在线性或相对布局中有两个MaterialCardView(我不关心父布局我只想要结果)我希望两个 MaterialCardView 都应该有 wrap_content 高度

现在第一个MaterialCardView 包含一个FrameLayout,它有两个东西一个图像视图和一个include 布局,其中包含要在图像上显示的按钮

第二个MaterialCardView 还包含一个FrameLayout,其中有一些textViews 和一个imageView(作为一个按钮,高度和宽度都为wrap_content

现在看起来像this

正如你在上面的截图中看到的,我给了weightSumMaterialCardView 的高度都为match_parent,但是现在

我想要那个

第一张和第二张卡片的高度应该是wrap_content,所以它可以相应地调整它们的高度。我试图简单地将其设为 wrap_content 但它不起作用

注意:

1:此布局是垂直回收器视图的一部分

2:imageView上方的TextViewSortCategory不是part 这个布局的

3:如果有人想要更多代码参考,请告诉我,我会 更新问题

代码

更新 // 删除了按钮布局xml代码,这样问题就不会变得更加混乱和冗长

在按照评论中的建议实施 ContraintLayout 后,现在第一个和第二个卡片视图工作正常,因为它们占用了其中内容的高度,但它是一团糟

我可能想要的样子 // 这是固定高度,但可以理解 Link

实现 ContraintLayout 和 wrap_content 高度后,它看起来像 this

post_item_container_home.xml // 这是带有 wrap_content 和 ContraintLayout 的更新代码

<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_
    android:layout_centerInParent="true"
    android:background="@color/black"
    android:orientation="vertical">

    <com.google.android.material.card.MaterialCardView
        android:id="@+id/Card_View"
        android:layout_
        android:layout_
        android:layout_marginStart="5dp"
        android:layout_marginEnd="5dp"
        android:elevation="6dp"
        app:cardBackgroundColor="@color/black"
        app:shapeAppearanceOverlay="@style/RoundedCornerHome"
        tools:ignore="MissingConstraints">

        <FrameLayout
            android:layout_
            android:layout_>

            <com.google.android.material.imageview.ShapeableImageView
                android:id="@+id/imagePostHome"
                android:layout_
                android:layout_
                android:layout_gravity="center"
                android:adjustViewBounds="true"
                android:contentDescription="@string/todo"
                android:tag="centerCrop"
                app:shapeAppearanceOverlay="@style/RoundedCornerHome" />

            <include
                android:id="@+id/imagepost_buttons"
                layout="@layout/imagepost_buttons" />
        </FrameLayout>

    </com.google.android.material.card.MaterialCardView>

    <com.google.android.material.card.MaterialCardView
        android:layout_
        android:layout_
        android:layout_marginStart="5dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="5dp"
        android:layout_marginBottom="10dp"
        android:elevation="6dp"
        app:cardBackgroundColor="@color/dark_grey"
        app:layout_constraintBottom_toBottomOf="@+id/Card_View"
        app:shapeAppearanceOverlay="@style/RoundedCornerHome"
        tools:ignore="MissingConstraints">

        <FrameLayout
            android:layout_
            android:layout_>

            <ImageView
                android:layout_
                android:layout_
                android:layout_gravity="top|right"
                android:layout_marginTop="5dp"
                android:layout_marginEnd="25dp"
                android:contentDescription="@string/todo"
                android:src="@drawable/ic_baseline_attach_money_24"
                tools:ignore="RtlHardcoded" />

            <TextView
                android:layout_
                android:layout_
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="5dp"
                android:fontFamily="@font/roboto"
                android:text="Ian Somerhalder"
                android:textColor="@color/white"
                android:textSize="20sp"
                android:textStyle="bold"
                tools:ignore="SmallSp" />

            <TextView
                android:layout_
                android:layout_
                android:layout_gravity="left|center_vertical"
                android:layout_marginLeft="10dp"
                android:fontFamily="@font/roboto"
                android:text=".............."
                android:textColor="@color/white"
                android:textSize="17sp"
                tools:ignore="RtlHardcoded" />

        </FrameLayout>


    </com.google.android.material.card.MaterialCardView>


</androidx.constraintlayout.widget.ConstraintLayout>

旧/原始

post_item_container_home.xml

<LinearLayout 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_
    android:layout_centerInParent="true"
    android:background="@color/black"
    android:orientation="vertical"
    android:weightSum="5">

    <com.google.android.material.card.MaterialCardView
        android:id="@+id/Card_View"
        android:layout_
        android:layout_
        android:layout_marginStart="5dp"
        android:layout_marginEnd="5dp"
        android:layout_weight="4"
        android:elevation="6dp"
        app:cardBackgroundColor="@color/black"
        app:shapeAppearanceOverlay="@style/RoundedCornerHome">

        <FrameLayout
            android:layout_
            android:layout_>

            <com.google.android.material.imageview.ShapeableImageView
                android:id="@+id/imagePostHome"
                android:layout_
                android:layout_
                android:layout_gravity="center"
                android:adjustViewBounds="true"
                android:contentDescription="@string/todo"
                android:tag="centerCrop"
                app:shapeAppearanceOverlay="@style/RoundedCornerHome" />

            <include
                android:id="@+id/imagepost_buttons"
                layout="@layout/imagepost_buttons" />
        </FrameLayout>

    </com.google.android.material.card.MaterialCardView>

    <com.google.android.material.card.MaterialCardView
        android:layout_
        android:layout_
        android:layout_marginStart="5dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="5dp"
        android:layout_marginBottom="10dp"
        android:layout_weight="1"
        android:elevation="6dp"
        app:cardBackgroundColor="@color/dark_grey"
        app:shapeAppearanceOverlay="@style/RoundedCornerHome">

        <FrameLayout
            android:layout_
            android:layout_>

            <ImageView
                android:layout_
                android:layout_
                android:layout_gravity="top|right"
                android:layout_marginTop="5dp"
                android:layout_marginEnd="25dp"
                android:contentDescription="@string/todo"
                android:src="@drawable/ic_baseline_attach_money_24"
                tools:ignore="RtlHardcoded" />

            <TextView
                android:layout_
                android:layout_
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="5dp"
                android:fontFamily="@font/roboto"
                android:text="Ian Somerhalder"
                android:textColor="@color/white"
                android:textSize="20sp"
                android:textStyle="bold"
                tools:ignore="SmallSp" />

            <TextView
                android:layout_
                android:layout_
                android:layout_gravity="left|center_vertical"
                android:layout_marginLeft="10dp"
                android:fontFamily="@font/roboto"
                android:text=".............."
                android:textColor="@color/white"
                android:textSize="17sp"
                tools:ignore="RtlHardcoded" />

        </FrameLayout>


    </com.google.android.material.card.MaterialCardView>


</LinearLayout>

【问题讨论】:

好的,我明白了,但是我希望图像卡片视图应该是没有限制的包装内容,但是是的,我想要第二个具有有限最小高度和最大高度的卡片,并考虑到滚动视图我也很困惑,是否有任何方法即使第二张卡片视图超出布局仍然会正常出现在recyclerview中,我对此感到困惑 而且现在没有滚动视图 你介意用ConstraintLayout代替LinearLayout吗? 好的,我已经更新了问题,您可以查看更新部分 抱歉,将此添加为RecyclerView 项目布局将能够包装其全部内容,因为 recyclerView 已经滚动其项目并计算它们所需的大小。 【参考方案1】:

使用ConstranitLayout,可以更轻松地调整图像顶部的按钮布局;并调整两张卡片的约束以包装其内容。

app:layout_constraintBottom_toBottomOf="@+id/Card_View" 应改为:

app:layout_constraintBottom_toBottomOf="parent"app:layout_constraintTop_toBottomOf="@id/Card_View"

您还可以选择使用app:layout_constraintHeight_min="100dp" 调整最小高度限制,使用app:layout_constraintHeight_min="200dp" 调整最大高度限制。根据您的需要调整大小

<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_
    android:layout_centerInParent="true"
    android:background="@color/black"
    android:orientation="vertical">

    <com.google.android.material.card.MaterialCardView
        android:id="@+id/Card_View"
        android:layout_
        android:layout_
        android:layout_marginStart="5dp"
        android:layout_marginEnd="5dp"
        android:elevation="6dp"
        app:cardBackgroundColor="@color/black"
        app:layout_constrainedHeight="true"
        app:layout_constraintBottom_toTopOf="@id/bottom_card"
        app:layout_constraintTop_toTopOf="parent"
        app:shapeAppearanceOverlay="@style/RoundedCornerHome">

        <FrameLayout
            android:layout_
            android:layout_>

            <com.google.android.material.imageview.ShapeableImageView
                android:id="@+id/imagePostHome"
                android:layout_
                android:layout_
                android:layout_gravity="center"
                android:adjustViewBounds="true"
                android:contentDescription="@string/todo"
                android:tag="centerCrop"
                app:shapeAppearanceOverlay="@style/RoundedCornerHome" />

            <include
                android:id="@+id/imagepost_buttons"
                layout="@layout/imagepost_buttons" />
        </FrameLayout>

    </com.google.android.material.card.MaterialCardView>

    <com.google.android.material.card.MaterialCardView
        android:id="@+id/bottom_card"
        android:layout_
        android:layout_
        android:layout_marginStart="5dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="5dp"
        android:layout_marginBottom="10dp"
        android:elevation="6dp"
        app:layout_constraintHeight_min="100dp"
        app:layout_constraintHeight_max="200dp"
        app:cardBackgroundColor="@color/dark_grey"
        app:layout_constraintBottom_toBottomOf="parent"
        app:shapeAppearanceOverlay="@style/RoundedCornerHome">

        <FrameLayout
            android:layout_
            android:layout_>

            <ImageView
                android:layout_
                android:layout_
                android:layout_gravity="top|right"
                android:layout_marginTop="5dp"
                android:layout_marginEnd="25dp"
                android:contentDescription="@string/todo"
                android:src="@drawable/ic_baseline_attach_money_24"
                tools:ignore="RtlHardcoded" />

            <TextView
                android:layout_
                android:layout_
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="5dp"
                android:fontFamily="@font/roboto"
                android:text="Ian Somerhalder"
                android:textColor="@color/white"
                android:textSize="20sp"
                android:textStyle="bold"
                tools:ignore="SmallSp" />

            <TextView
                android:layout_
                android:layout_
                android:layout_gravity="left|center_vertical"
                android:layout_marginLeft="10dp"
                android:fontFamily="@font/roboto"
                android:text=".............."
                android:textColor="@color/white"
                android:textSize="17sp"
                tools:ignore="RtlHardcoded" />

        </FrameLayout>


    </com.google.android.material.card.MaterialCardView>


</androidx.constraintlayout.widget.ConstraintLayout>

更新

但现在底部卡片视图没有保持最小和最大高度

这里使用最小和最大约束将TextView 的高度限制为最小和最大值;但如果它的高度不超过最小值和最大值,它仍然会包裹它的内容。

您可以通过将FrameLayout 替换为ConstraintLayout 来解决此问题;实际上在这里使用FrameLayout可以使内部视图相互重叠:

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_
        android:layout_>

        <ImageView
            android:layout_
            android:layout_
            android:layout_marginTop="5dp"
            android:layout_marginEnd="25dp"
            android:layout_marginRight="25dp"
    android:contentDescription="@string/todo"
            android:src="@drawable/ic_baseline_attach_money_24"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            tools:ignore="RtlHardcoded" />

        <TextView
            android:id="@+id/title"
            android:layout_
            android:layout_
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="5dp"
            android:fontFamily="@font/roboto"
            android:text="Ian Somerhalder"
            android:textColor="@color/white"
            android:textSize="20sp"
            android:textStyle="bold"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            tools:ignore="SmallSp" />

        <TextView
            android:layout_
            android:layout_
            android:layout_marginStart="10dp"
            android:layout_marginLeft="10dp"
            android:fontFamily="@font/roboto"
            android:text=".............."
            android:textColor="@color/white"
            android:textSize="17sp"
            app:layout_constraintTop_toBottomOf="@+id/title"
            tools:ignore="RtlHardcoded" />

    </androidx.constraintlayout.widget.ConstraintLayout>

【讨论】:

好的,我已经尝试了您的解决方案,它确实有效,谢谢您,但是我的边距有一些问题我无法将顶部卡片视图与底部分开我已经给出了边距但仍然是它看起来很关节,好的,你在说什么滚动视图,如果实现滚动视图,它会起作用吗?我想要滚动视图吗?再次感谢您的回答 @VasantRaval 拥有与RecyclerView 相同方向的ScrollView 将无法在两者之间转换滚动;你能说出你指的是哪个边距吗?是否要在两张卡之间添加边距? 如果是两张卡之间的边距;您可以将android:layout_marginBottom="..." 添加到顶部卡片 我已经实现了从底部到顶部的边距,但它仍然被加入 好的,请不要介意,但我们可以在一段时间后继续讨论吗,实际上我刚刚将我的项目从 java 转换为 kotlin,正如预期的那样,有一些错误,所以我将无法运行应用程序直到错误解决

以上是关于如何在线性布局中将两个 CardView 高度作为 wrap_content的主要内容,如果未能解决你的问题,请参考以下文章

如何检索元素父容器的属性

为约束布局内的布局设置最小百分比高度

如何在线性布局中同样分离图像视图

将两个项目限制在线性布局内的顶部和底部

在自动布局中将一个视图中心作为第二个视图的底部 - iOS [关闭]

翻译Android RecyclerView CardView