Fruit
果实
注意
library中有两种实现, 详情可看Demo
1.带有回收复用的实现
2.不带有复用的实现
使用
1. FruitView
使用方法跟RecyclerView一样
2. SimpleFruitView(自定义ViewGroup实现, 抽象需要使用者根据实际情况继承实现)
// 绑定数据
protected abstract void bindData(View view, int index, T data);
// 自定义布局
protected abstract View createFruitView(ViewGroup NestedScrollingParent, T data);
// 自定义位置(暂支持5中)
protected int getFruitPattern(int inde
2023-02-26 12:46:46
153KB
Java
1