RecyclerView 高度不能随着Item数量 自适应高度
Posted zty-love
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RecyclerView 高度不能随着Item数量 自适应高度相关的知识,希望对你有一定的参考价值。
在最近项目中遇到 ,在RecyclerView加载list数据时,高度无法自适应增长,看了很多博客,各种尝试,都没有解决这个问题,在某个博客中,讲到此解决方法,在此记录下。
即在RecyclerView 布局时用 RelativeLayout 包裹着,即:
<RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/white" android:orientation="vertical" > <android.support.v7.widget.RecyclerView android:id="@+id/id_rv_orders" android:layout_width="match_parent" android:layout_height="match_parent" /> </RelativeLayout>
就可以自适应item数量高度
以上是关于RecyclerView 高度不能随着Item数量 自适应高度的主要内容,如果未能解决你的问题,请参考以下文章
Recyclerview中Item的ImageView高度wrapcontent使用Glide加载需要注意的地方