ListView优化的代码
第三種ListView優(yōu)化:通過convertView+ViewHolder來實(shí)現(xiàn),ViewHolder就是一個(gè)靜態(tài)類,使用 ViewHolder 的關(guān)鍵好處是緩存了顯示數(shù)據(jù)的視圖(View),加快了 UI 的響應(yīng)速度。
當(dāng)我們判斷?convertView?==?null??的時(shí)候,如果為空,就會(huì)根據(jù)設(shè)計(jì)好的List的Item布局(XML),來為convertView賦值,并生成一個(gè)viewHolder來綁定converView里面的各個(gè)View控件(XML布局里面的那些控件)。再用convertView的setTag將viewHolder設(shè)置到Tag中,以便系統(tǒng)第二次繪制ListView時(shí)從Tag中取出。(看下面代碼中)
如果convertView不為空的時(shí)候,就會(huì)直接用convertView的getTag(),來獲得一個(gè)ViewHolder。
?
//在外面先定義,ViewHolder靜態(tài)類 static class ViewHolder {public ImageView img;public TextView title;public TextView info; } //然后重寫getView @Overridepublic View getView(int position, View convertView, ViewGroup parent) {ViewHolder holder;if(convertView == null){holder = new ViewHolder();convertView = mInflater.inflate(R.layout.list_item, null);holder.img = (ImageView)item.findViewById(R.id.img) holder.title = (TextView)item.findViewById(R.id.title);holder.info = (TextView)item.findViewById(R.id.info);convertView.setTag(holder);}else{holder = (ViewHolder)convertView.getTag();}holder.img.setImageResource(R.drawable.ic_launcher);holder.title.setText("Hello");holder.info.setText("World");return convertView;}到這里,可能會(huì)有人問ViewHolder靜態(tài)類結(jié)合緩存convertView與直接使用convertView有什么區(qū)別嗎,是否重復(fù)了
在這里,官方給出了解釋
提升Adapter的兩種方法
To work efficiently the adapter implemented here uses two techniques:
-It reuses the convertView passed to getView() to avoid inflating View when it is not necessary
(譯:重用緩存convertView傳遞給getView()方法來避免填充不必要的視圖)
-It uses the ViewHolder pattern to avoid calling findViewById() when it is not necessary
(譯:使用ViewHolder模式來避免沒有必要的調(diào)用findViewById():因?yàn)樘嗟膄indViewById也會(huì)影響性能)
ViewHolder類的作用
-The ViewHolder pattern consists in storing a data structure in the tag of the view
returned by getView().This data structures contains references to the views we want to bind data to,
thus avoiding calling to findViewById() every time getView() is invoked
(譯:ViewHolder模式通過getView()方法返回的視圖的標(biāo)簽(Tag)中存儲(chǔ)一個(gè)數(shù)據(jù)結(jié)構(gòu),這個(gè)數(shù)據(jù)結(jié)構(gòu)包含了指向我們
要綁定數(shù)據(jù)的視圖的引用,從而避免每次調(diào)用getView()的時(shí)候調(diào)用findViewById())
?
轉(zhuǎn)載于:https://www.cnblogs.com/zhoujn/p/4108747.html
總結(jié)
以上是生活随笔為你收集整理的ListView优化的代码的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: swap的几点理解
- 下一篇: Ueditor1.4.3上传视频IE下无