StaggeredGridLayoutManager:添加边距使布局项被推到侧面

时间:2018-09-12 06:52:00

标签: java android android-layout android-recyclerview staggered-gridview

因此,我正在做一个小项目,我想向文件中添加StaggeredGridLayoutManager。如果我没有在布局中添加itemDecorator且没有添加marginpadding的情况,则可以使用。一旦添加页边距,它就会将列表推到一侧。我正在附上截图以澄清问题。enter image description here



这是我的代码:

recyclerView.setHasFixedSize(true);
    StaggeredGridLayoutManager gridLayoutManager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
    recyclerView.addItemDecoration(new EqualSpaceItemDecoration(8));
    recyclerView.setLayoutManager(gridLayoutManager);
    recyclerView.setAdapter(adapter);

以及该项目的布局文件

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
  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="wrap_content"
  android:orientation="vertical">
  <android.support.v7.widget.CardView
    android:id="@+id/wallpaper_item_card"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:cardBackgroundColor="@color/cardview_light_background"
    app:cardCornerRadius="4dp"
    app:cardElevation="4dp"
    app:cardPreventCornerOverlap="false">

    <ImageView
      android:id="@+id/wallpaper_item_image"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"/>

  </android.support.v7.widget.CardView>
</LinearLayout>

我已经环顾了一段时间,找不到能够解决问题的东西。任何帮助表示赞赏。谢谢。

2 个答案:

答案 0 :(得分:1)

我不知道您是否已经找到解决方案,但我会留下评论,以防其他人看到问题。

我能够通过以下操作解决此问题:

layoutManager.setGapStrategy(StaggeredGridLayoutManager.GAP_HANDLING_NONE);

示例:

StaggeredGridLayoutManager layoutManager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);          
layoutManager.setGapStrategy(StaggeredGridLayoutManager.GAP_HANDLING_NONE);
RecyclerView recyclerView = findViewById(R.id.recyclerView);
recyclerView.setLayoutManager(layoutManager);

答案 1 :(得分:0)

在Kotlin中使用:

viewManager.gapStrategy = StaggeredGridLayoutManager.GAP_HANDLING_NONE