RecyclerView GridLayout项目充满了父母

时间:2018-08-29 07:27:42

标签: android android-recyclerview gridlayoutmanager

我有如下所示的recyclerview:

    <android.support.v7.widget.RecyclerView
    android:id="@+id/rv_months"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

我为此设置了一个网格布局管理器:

GridLayoutManager gridLayoutManager = new GridLayoutManager(getContext(), 3);

我想在这3个项目之间平均划分recylerview宽度。

这是我的父项:

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="96dp">
....
 </android.support.v7.widget.CardView>

如何在这些项目之间平均划分recylcerview父项?

我希望我的视图如下所示:3个项目的大小相等,并且它们填充了父级宽度

enter image description here

0 个答案:

没有答案