1. 程式人生 > >RecyclerView 高度不能隨著Item數量 自適應高度

RecyclerView 高度不能隨著Item數量 自適應高度

round and cycle cal ica hit ati out 沒有

在最近項目中遇到 ,在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數量 自適應高度