ListView適配器的寫法

初級

  • 優(yōu)點:復(fù)用convertView
  • 缺點:每次調(diào)用getview()都會去findview,是耗費(fèi)資源的操作
public class MyAdapter extends BaseAdapter {
    protected List<Bean> mList;
    protected Context mContext;
    LayoutInflater mInflater;
    
    public MyAdapter(Context context, List<Bean> list) {
        this.mList = list;
        this.mContext = context;
        mInflater=LayoutInflater.from(context);
    }

    @Override
    public int getCount() {
        return mList.size();
    }

    @Override
    public Object getItem(int position) {
        return mList.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }
    
    public View getView(int position, View convertView, ViewGroup parent) {
        /*----------視圖操作--------------*/
        View itemview = null;
        if (convertView == null) {
            //初始化布局
            itemview = mInflater.inflate(R.layout.item, parent, false);
        } else {
            //復(fù)用convertView
            itemview = convertView;
        }
         /*-------------- 查找控件 --------------*/
        TextView title = (TextView) itemview.findViewById(R.id.tv_title);
        TextView desc = (TextView) itemview.findViewById(R.id.tv_desc);
    
        /*-------------- 數(shù)據(jù)綁定 --------------*/
        Bean bean = mList.get(position);
    
        title.setText(bean.tilte);
        desc.setText(bean.desc);
    
        return itemview;
    }
}
  • 簡化寫法
    public View getView(int position, View convertView, ViewGroup parent) {

        /*----------視圖操作--------------*/
        if (convertView == null) {
            //convertView為空,
            convertView = mInflater.inflate(R.layout.item, parent, false);
        }

        /*-------------- 查找控件 --------------*/
        TextView title = (TextView) convertView.findViewById(R.id.tv_title);
        TextView desc = (TextView) convertView.findViewById(R.id.tv_desc);

        /*-------------- 數(shù)據(jù)綁定 --------------*/
        Bean bean = mList.get(position);

        title.setText(bean.tilte);
        desc.setText(bean.desc);

        return convertView;
    }

中級

  • 優(yōu)點:利用ViewHolder存儲找到的控件,避免多次findViewById
  • 缺點:代碼量大
public View getView(int position, View convertView, ViewGroup parent) {
    ViewHolder holder = null;

    /*----------視圖操作--------------*/
    if (convertView == null) {
        //解析布局文件
        convertView = mInflater.inflate(R.layout.item, parent, false);
        //創(chuàng)建對象
        holder = new ViewHolder();
        //設(shè)置標(biāo)記
        convertView.setTag(holder);
        
        /*-----------findview ,并存儲到holder--------*/ 
        holder.title = (TextView) convertView.findViewById(R.id.tv_title);
        holder.desc = (TextView) convertView.findViewById(R.id.tv_desc);
        
    } else {
        //根據(jù)標(biāo)記,取出holder
        holder = (ViewHolder) convertView.getTag();
    }

    /*-------------- 賦值 --------------*/
    Bean bean = mList.get(position);
    holder.title.setText(bean.tilte);
    holder.desc.setText(bean.desc);

    return convertView;
}

//存放控件,避免多次findViewById
class ViewHolder{
    TextView title;
    TextView desc ;
}

高級

  • holder可通用,減少代碼量
public View getView(int position, View convertView, ViewGroup parent) {
        HolderView holderView = null;
        
        /*--------------視圖操作--------------------*/
        if (convertView == null) {
            //創(chuàng)建一個holder
            holderView = new HolderView(mContext, R.layout.item, position, parent);
        } else {
            //取出holder
            holderView = (HolderView) convertView.getTag();
            //更新條目位置
            holderView.mPosition=position;
        }

        /*--------------數(shù)據(jù)綁定--------------------*/
        //數(shù)據(jù)
        Bean bean = mList.get(position);
        //設(shè)置數(shù)據(jù)
        holderView.setText(R.id.tv_commond, bean.commond)
                .setText(R.id.tv_title, bean.tilte)
                .setText(R.id.tv_desc, bean.desc)
                .setText(R.id.tv_time, bean.time);

        return holderView.mItemView;
}
class HolderView {

    //條目視圖
    View mItemView;
    //條目位置
    int mPosition;
    //實質(zhì)上是存儲<Integer,Object>的HashMap,效率高于HashMap
    SparseArray<View> mArrays;

    public HolderView(Context context,int layoutId,int position,ViewGroup parent) {
        LayoutInflater inflater=LayoutInflater.from(context);
        //初始化布局
        this.mItemView =inflater.inflate(layoutId, parent, false);
        //創(chuàng)建容器
        mArrays = new SparseArray<>();
        //記錄條目位置
        mPosition = position;
        //標(biāo)記
        this.mItemView.setTag(this);
    }

    /**
     * 獲取控件
     */
    public <T extends View> T getView(int viewId) {
        //根據(jù)id從容器取出控件
        View view = mArrays.get(viewId);
        if (view == null) {
            //findview
            view = mItemView.findViewById(viewId);
            //緩存
            mArrays.put(viewId, view);
        }
        return (T) view;
    }

    /**
     * 設(shè)置文本
     */
    public HolderView setText(int viewId, String string) {
        TextView textView = getView(viewId);
        textView.setText(string);
        return this;
    }
    
    //以后如果有ImageView,Button等空間,可以自行增加方法,進(jìn)行數(shù)據(jù)綁定
}

超級

  • 封裝通用Adapter
  • 封裝通用Holder
public abstract class CommonAdapter<T> extends BaseAdapter {
    protected List<T> mList;
    protected Context mContext;
    /**
     * 布局文件id
     */
    protected int mLayoutId;

    public CommonAdapter(Context context, int layoutId, List<T> list) {
        this.mList = list;
        this.mLayoutId = layoutId;
        this.mContext = context;
    }

    @Override
    public int getCount() {
        return mList.size();
    }

    @Override
    public Object getItem(int position) {
        return mList.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        //找到holder
        BaseViewHolder holder = BaseViewHolder.get(mContext, mLayoutId, position, convertView, parent);

        T bean = mList.get(position);

        bindData(bean, holder);

        return holder.getItemView();
    }

    /**
     * 數(shù)據(jù)和控件進(jìn)行綁定
     *
     * @param bean
     * @param holder
     */
    protected abstract void bindData(T bean, BaseViewHolder holder);

}

public class BaseViewHolder {
    /**
     * 泛型為<Integer,Object>的HashMap,效率比普通的HashMap高一些
     * 存儲子控件
     */
    private SparseArray<View> mArrays;
    /**
     * 條目位置
     */
    private int mPosition;
    /**
     * 條目視圖View
     */
    private View mItemView;

    /**
     * 獲取條目位置
     */
    public int getPosition() {
        return mPosition;
    }

    /**
     * 獲取條目視圖
     */
    public View getItemView() {
        return mItemView;
    }

    //構(gòu)造方法私有,禁止外部創(chuàng)建對象
    //內(nèi)部創(chuàng)建對象時:進(jìn)行初始化布局等操作
    private BaseViewHolder(Context context, int resId, int position, ViewGroup parent) {
        //創(chuàng)建容器
        this.mArrays = new SparseArray<>();
        //記錄item位置
        this.mPosition = position;
        //初始化布局
        this.mItemView = LayoutInflater.from(context).inflate(resId, parent, false);
        //標(biāo)記Holder
        this.mItemView.setTag(this);
    }

    /**
     * 獲取Holder
     *
     * @param context     上下文
     * @param layoutId    布局id
     * @param position    條目的位置
     * @param convertView 復(fù)用的視圖,convert(轉(zhuǎn)換的)
     * @param parent      父view
     * @return
     */
    public static BaseViewHolder get(Context context, int layoutId,
                                     int position, View convertView, ViewGroup parent) {
        if (convertView == null) {
            //返回一個新創(chuàng)建的Holder
            return new BaseViewHolder(context, layoutId, position, parent);
        } else {
            //返回一個從標(biāo)記中取出Holder
            BaseViewHolder baseHolder = (BaseViewHolder) convertView.getTag();
            //更新條目位置
            baseHolder.mPosition = position;
            return baseHolder;
        }

    }

    /**
     * 根據(jù)控件Id找到控件
     *
     * @param viewId 控件Id
     * @param <T>
     * @return
     */
    public <T extends View> T getView(int viewId) {
        //從容器中取出控件
        View view = mArrays.get(viewId);
        //控件為空
        if (view == null) {
            //findview
            view = mItemView.findViewById(viewId);
            //緩存
            mArrays.put(viewId, view);
        }
        return (T) view;
    }

    /**
     * 設(shè)置文本
     *
     * @param viewId 控件Id
     * @param text   文本內(nèi)容
     * @return
     */
    public BaseViewHolder setText(int viewId, String text) {
        TextView textView = getView(viewId);
        textView.setText(text);
        return this;
    }
    
   //更多方法,根據(jù)條目id和數(shù)據(jù)自行創(chuàng)建... 
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市斧吐,隨后出現(xiàn)的幾起案子蚯根,更是在濱河造成了極大的恐慌,老刑警劉巖作岖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡盾碗,警方通過查閱死者的電腦和手機(jī)怎静,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門邮弹,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人蚓聘,你說我怎么就攤上這事腌乡。” “怎么了夜牡?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵与纽,是天一觀的道長。 經(jīng)常有香客問我塘装,道長急迂,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任蹦肴,我火速辦了婚禮僚碎,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘阴幌。我一直安慰自己勺阐,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布矛双。 她就那樣靜靜地躺著渊抽,像睡著了一般。 火紅的嫁衣襯著肌膚如雪议忽。 梳的紋絲不亂的頭發(fā)上腰吟,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼毛雇。 笑死嫉称,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的灵疮。 我是一名探鬼主播织阅,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼震捣!你這毒婦竟也來了荔棉?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤蒿赢,失蹤者是張志新(化名)和其女友劉穎润樱,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體羡棵,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡壹若,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了皂冰。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片店展。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖秃流,靈堂內(nèi)的尸體忽然破棺而出赂蕴,到底是詐尸還是另有隱情,我是刑警寧澤舶胀,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布概说,位于F島的核電站,受9級特大地震影響嚣伐,放射性物質(zhì)發(fā)生泄漏糖赔。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一纤控、第九天 我趴在偏房一處隱蔽的房頂上張望挂捻。 院中可真熱鬧碉纺,春花似錦船万、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至态贤,卻和暖如春舱呻,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工箱吕, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留芥驳,地道東北人。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓茬高,卻偏偏與公主長得像兆旬,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子怎栽,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容