Android StaggeredGridView问题

时间:2014-03-05 05:25:25

标签: android android-gridview staggered-gridview

我想要像pinterest这样的GridView,因为我实现了StaggeredGridView lib。

因为我遇到了滚动问题。当我向上滚动时,顶部图像移动到下一行,顶部视图将变为空白。

我在以下图片链接中发布了帖子。

Stuck with this Issue of StaggeredGridView

注意:

如果我固定了ImageView的高度,它的效果很好,但没有得到我想要的那个视图。

我该如何解决这个问题。?

Image

您的帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

现在很长时间才回答这个问题,但现在 Recyclerview 支持不同的布局管理器,因此使用交错使用recyclelerview 只需使用以下代码: -

 rcyclerview.setLayoutManager(new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL));

如果您想将此标题添加为标题,请在标题部分的bindviewholder中设置代码: -

 StaggeredGridLayoutManager.LayoutParams layoutParams = (StaggeredGridLayoutManager.LayoutParams) holder.itemView.getLayoutParams();
        layoutParams.setFullSpan(true);