码迷,mamicode.com
首页 > 其他好文 > 详细

自定义Adapter中getView( )中使用View.setTag()和不使用的区别。

时间:2014-10-23 10:41:53      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:android   tag   

首先来看使用Tag的情况。

@Override
	public View getView(int position, View view, ViewGroup group) {
		ViewHolder holder = new ViewHolder();
		if(view==null){
			view = inflater.inflate(R.layout.note_list_item, null);//加载列表项的布局文件.
			holder.title = (TextView)view.findViewById(R.id.note_title);
			holder.createtime = (TextView)view.findViewById(R.id.note_createtime);
			holder.clock = (ImageView)view.findViewById(R.id.note_clock);
			view.setTag(holder);	//将view和holder进行绑定
		}else{
			holder = (ViewHolder)view.getTag();
		}
		String title = items.get(position);
		title = title.length()>10 ? title.substring(0, 10)+"..." : title;
		holder.title.setText(title);
		holder.createtime.setText(times.get(position));
	}
可以看到,本例使用了一个特别的ViewHolder类对组件进行保存。

private class ViewHolder{
private TextView title;
private TextView createtime;
private ImageView clock;
}

再来看下不使用Tag的情况:

 @Override                

@Override                
public View getView(int position, View convertView, ViewGroup parent) {                      
  if(convertView == null) {                               
    convertView = mInflater.inflate(R.layout.multiple_checkbox_main_row, null);                      
  }                        
    TextView tN = (TextView) convertView.findViewById(R.id.multiple_title); 
    tN.setText((String)mList.get(position).get(NAME));
    TextView tP = (TextView) convertView.findViewById(R.id.multiple_summary);                       
    tP.setText((String)mList.get(position).get(PHONE_NUMBER));
}
可以发现不使用Tag获取View时每次都会调用View.findViewById(XXX)方法。

而使用Tag的时候由于控件已经保存到了Tag中所以不必再调用View.findViewById(XXX)方法。

Tag相当于一个缓存的作用,从而提升了程序的性能。



自定义Adapter中getView( )中使用View.setTag()和不使用的区别。

标签:android   tag   

原文地址:http://blog.csdn.net/superharder/article/details/40392271

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!