RecyclerView上拉加载,先看效果:
网上有很多这类得框架,不过在自己的项目只用到上拉加载的功能,所以自己封装一个简单点的。
主要依赖BaseRecyPRAdapter这类
public abstract class BaseRecyPRAdapter extends RecyclerView.Adapter {
private static final String TAG = BaseRecyPRAdapter;
public static final int VIEW_
前言
关于adapter的封装,网上有很多开源库,开发的时候可以直接拿来用,省了很多事。
最近闲来无事,想着自己动手封装一个adapter。
问题
1、通常我们封装的时候,可以简化到这一步:
BaseRecyclerViewAdapter adapter = new BaseRecyclerViewAdapter() {
private static final int TYPE_FIR = 1;
private static final int TYPE_SEC = 2;
p