gpt4 book ai didi

android - RecyclerView 行最大高度?

转载 作者:行者123 更新时间:2023-11-30 01:04:54 26 4
gpt4 key购买 nike

我想知道 RecycleView 行是否有最大高度。我创建了一个简单的 RecycleView.Adapter,其中行布局不适合。它被切碎并开始新行。我没有在任何地方使用固定的高度或宽度,所以它应该根据布局需要扩展,除非 RecycleView 中有最大行高?稍后我将能够发布一些代码。

为了论证,我只留下这段代码来膨胀(正如你所见,出于测试目的,我设置了 android:layout_height="100000dp"):

<RelativeLayout
android:id="@+id/feed_photo_user_container"
android:layout_width="match_parent"
android:layout_height="100000dp"
android:background="@color/WHITE">


<com.github.siyamed.shapeimageview.CircularImageView
android:id="@+id/feed_photo_user_image"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="15dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="15dp"
android:src="@drawable/user_icon" />

<TextView
android:id="@+id/feed_photo_user_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/feed_photo_user_image"
android:layout_alignTop="@id/feed_photo_user_image"
android:layout_marginLeft="8dp"
android:layout_toEndOf="@id/feed_photo_user_image"
android:layout_toRightOf="@id/feed_photo_user_image"
android:gravity="center"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:scaleType="fitXY"
android:src="@drawable/seperator_line" />

</RelativeLayout>

结果是一样的,RecycleView 以某种方式限制了我的行高。 image如您所见,它可以扩展到某个最大高度

最佳答案

他们的关键点是将布局高度从 MACH_PARENT 更改为 wrap_content。现在一切都好。

关于android - RecyclerView 行最大高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38969665/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com