gpt4 book ai didi

android - RecyclerView 中的中心列

转载 作者:太空宇宙 更新时间:2023-11-03 11:06:02 25 4
gpt4 key购买 nike

我正在尝试创建动态 RecyclerView 布局。我正在使用具有三列的 GridLayoutManager

我需要包装每个网格项并使列居中(如附件所示)。

我试过 StaggeredGridLayout,我试过 WrapGridLayoutManager但这些都不起作用。

这是我的RecyclerView:

 <android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/categories_grid"
android:layout_marginTop="@dimen/feed_item_margin"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>

和我的 RecyclerView 项目:

 <LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:background="@drawable/first_time_category_unselected"
android:layout_width="wrap_content"
android:layout_height="match_parent">

<TextView
android:id="@+id/category_name"
android:layout_marginLeft="@dimen/feed_item_margin"
android:layout_gravity="center_vertical"
android:textColor="@color/black_colour"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<ImageView
android:id="@+id/category_status_icon"
android:layout_gravity="center_vertical"
android:background="@drawable/icon_follow"
android:layout_marginLeft="@dimen/feed_item_margin"
android:layout_marginRight="@dimen/feed_item_margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

这是我用来实现网格间距的装饰:

public class SpacesItemDecoration extends RecyclerView.ItemDecoration {
private int halfSpace;

public SpacesItemDecoration(int space) {
this.halfSpace = space / 2;
}

@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {

if (parent.getPaddingLeft() != halfSpace) {
parent.setPadding(halfSpace, halfSpace, halfSpace, halfSpace);
parent.setClipToPadding(false);
}

outRect.top = halfSpace;
outRect.bottom = halfSpace;
outRect.left = halfSpace;
outRect.right = halfSpace;
}
}

这就是我要实现的目标: what I'm trying to achieve

这是我得到的: enter image description here如果有人可以提供帮助,我将不胜感激

最佳答案

您可以使用交错网格布局管理器

作为

  StagaggeredGridLayoutManager = new StaggeredGridLayoutManager(3, LinearLayoutManager.HORIZONTAL );
recyclerView.setLayoutManager(gaggeredGridLayoutManager);

这里是 Link供引用

关于android - RecyclerView 中的中心列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33607820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com