Android 两列宽度相等的 Studio CardView

Android Studio CardView with two columns that have equal width

我试图在卡片视图中的每行(两列)显示两个元素。但是,它们不在卡片视图的中心。 click here to see how the cardview displays items

这里是 xml.:

中的代码
 <androidx.recyclerview.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#FFDB78"
            android:layout_below="@+id/LinearLayoutCateg"
            android:layout_above="@+id/menu"
            android:id="@+id/currentCategoryRecyclerView"/>

我在 Main activity 中以编程方式创建了一个新的 GridLayoutManager,如下所示:

 recyclerView.setLayoutManager(new GridLayoutManager(CategoryListActivity.this,2));
        recyclerView.setAdapter(categoryRecycler);

卡片视图位于具有 "android:gravity="center" 属性 的相对布局中,如果这很重要的话。 我不确定我错过了什么。

我和你有同样的问题,我找到了 RecyclerView.ItemDecoration class for RecyclerView Spacing.

public class ItemOffsetDecoration extends RecyclerView.ItemDecoration {

private int mItemOffset;

public ItemOffsetDecoration(int itemOffset) {
    mItemOffset = itemOffset;
}

public ItemOffsetDecoration(@NonNull Context context, @DimenRes int itemOffsetId) {
    this(context.getResources().getDimensionPixelSize(itemOffsetId));
}

@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent,
        RecyclerView.State state) {
    super.getItemOffsets(outRect, view, parent, state);
    outRect.set(mItemOffset, mItemOffset, mItemOffset, mItemOffset);
}

}

ItemOffsetDecoration 添加到您的 RecyclerView。
项目 偏移量 值应该是您要在项目之间添加 space 的实际值的一半。

 mRecyclerView.setLayoutManager(new GridLayoutManager(context, NUM_COLUMNS);
ItemOffsetDecoration itemDecoration = new ItemOffsetDecoration(context, R.dimen.item_offset);
mRecyclerView.addItemDecoration(itemDecoration);

此外,将项目 offset 值设置为其 RecyclerView 的填充,并指定 android:clipToPadding=false.

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview_grid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:padding="@dimen/item_offset"/>    <!--Give a desired size-->

refer