mcxtzhang / ZLayoutManager

Some custom LayoutManager .Such as SwipeCard、FLowLayout。一些自定义的LayoutManager,仿探探、人人影视 炫动滑动 卡片层叠 和流式布局等。
http://blog.csdn.net/zxt0601/article/details/53730908
2.53k stars 391 forks source link

FlowLayoutManager数据不满屏的暂时解决办法 #22

Open MageLin opened 6 years ago

MageLin commented 6 years ago

@Override public int scrollVerticallyBy(int dy, RecyclerView.Recycler recycler, RecyclerView.State state) { //位移0、没有子View 当然不移动 if (dy == 0 || getChildCount() == 0) { return 0; } //以下是边界判断 if (getItemCount() == getChildCount() && getDecoratedTop(getChildAt(0)) >= 0 && (getHeight() - getPaddingBottom()) >= getDecoratedBottom(getChildAt(getChildCount() - 1))) { return 0; } //.....//