android仿Adapter自定义PagerAdapter
2017-11-15 本文已影响98人
君莫醉
为增加PagerAdapter的可用性与可读性,自定义了一下PagerAdapter
public abstract class EjBasePagerAdapter<T> extends PagerAdapter {
protected List<T> list;
protected SparseArray<EjBasePagerHolder<T>> sparseArray;
public EjBasePagerAdapter(List<T> list){
this.list = list;
sparseArray = new SparseArray<>();
}
@Override
public int getCount() {
return list.size();
}
public String getIcon(int position){
return null;
}
@Override
public Object instantiateItem(ViewGroup container, int position) {
EjBasePagerHolder<T> holder = sparseArray.get(getSparsePosition(position));
if(null == holder){
holder = onBundHolder(container);
holder.setPosition(position);
holder.bindDada(list.get(position),position);
sparseArray.put(getSparsePosition(position),holder);
}
View view = holder.itemView;
container.addView(view);
return view;
}
@Override
public void notifyDataSetChanged() {
sparseArray.clear();
super.notifyDataSetChanged();
}
protected int getSparsePosition(int position){
return (position+10)*2;
}
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
container.removeView((View) object);
}
protected View inflate(int resorce, ViewGroup viewGroup) {
return LayoutInflater.from(viewGroup.getContext()).inflate(resorce, viewGroup, false);
}
@Override
public boolean isViewFromObject(View view, Object object) {
return view == object;
}
protected abstract EjBasePagerHolder<T> onBundHolder(ViewGroup container);
public void onDestroy(){
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
}
protected abstract class EjBasePagerHolder<D>{
/**上下文*/
protected Context mContext;
private int position;
SparseArray<View> sparseArray;
View itemView;
protected EjBasePagerHolder(View itemView){
this.itemView = itemView;
this.mContext = itemView.getContext();
sparseArray = new SparseArray<>();
initView();
}
public abstract void initView();
public View findViewById(int id){
View view = sparseArray.get(id);
if(null == view){
view = itemView.findViewById(id);
sparseArray.append(id,view);
}
return view;
}
public abstract void bindDada(D t,int position);
public void onActivityResult(int requestCode, int resultCode, Intent data) {
}
public void setPosition(int position) {
this.position = position;
}
public int getPosition() {
return position;
}
public void onDestroy(){
sparseArray.clear();
}
}
}
简单用法
public class EjMainFmtBannerPagerAdapter extends EjBasePagerAdapter<EjMainFragmentDataBean>{
public EjMainFmtBannerPagerAdapter(List<EjMainFragmentDataBean> list) {
super(list);
}
@Override
protected EjBasePagerHolder<EjMainFragmentDataBean> onBundHolder(ViewGroup container) {
return new EjBasePagerHolder<EjMainFragmentDataBean>(LayoutInflater.from(container.getContext()).inflate(R.layout.ejmain_item_fmt_banner,null)) {
private ImageView ejmain_iv_banner;
@Override
public void initView() {
ejmain_iv_banner = (ImageView)findViewById(R.id.ejmain_iv_banner);
}
@Override
public void bindDada(EjMainFragmentDataBean t, int position) {
GlidUtil.loadUrl(t.img1,ejmain_iv_banner,mContext);
}
};
}
}