GcsSloop / pager-layoutmanager

[暂停维护]Android 网格分页布局。
http://www.gcssloop.com/
Apache License 2.0
1.13k stars 182 forks source link

首先非常感谢作者能开源recycerview分页解决方案,另外请问下作者能在下个版本中加入拖曳排序功能吗?我这边加了拖曳发现拖曳的时候画面偶会闪一下,而且拖动到边缘不会回弹 #32

Open shenghai2019 opened 5 years ago

baihuahuade commented 3 years ago

将 PagerGridLayoutManager 中的 预存储View 这段代码注释掉就可以了 // if (mOffsetX == 0 && mOffsetY == 0) { // // 预存储View // for (int i = 0; i < mOnePageSize; i++) { // if (i >= getItemCount()) break; // 防止数据过少时导致数组越界异常 // View view = recycler.getViewForPosition(i); // addView(view); // measureChildWithMargins(view, mWidthUsed, mHeightUsed); // } // }