我有如下所示的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个项目的大小相等,并且它们填充了父级宽度