1.用于区分非常多类似的View
比如:
button1.setOnClickListener(new OnClickListener ... );
button2.setOnClickListener(new OnClickListener ... );
它们可能运行类似的逻辑,但你必须分别为两个Button设置两个独立的OnClick事件,
public void onClick(View v) {
doAction(1); // 1 for button1, 2 for button2, etc.
}
之所以这样做。由于onClick仅仅有一个參数View。我们能够通过setTag和getTag来完毕:
button1.setTag(1);
button2.setTag(2);
我们能够将两个button设置同一个OnClickListener,比方:
listener = new OnClickListener() {
@Override
public void onClick(View v) {
doAction(v.getTag());
}
};
这样,就能够通过getTag区分。
2.用于ListView的复用
我们自己写自己定义adapter的时候,一般会使用它。比方:
static class ViewHolder {
TextView tvPost;
TextView tvDate;
ImageView thumb;
} public View getView(int position, View convertView, ViewGroup parent) { if (convertView == null) {
LayoutInflater inflater = myContext.getLayoutInflater();
convertView = inflater.inflate(R.layout.postitem, null); ViewHolder vh = new ViewHolder();
vh.tvPost = (TextView)convertView.findViewById(R.id.postTitleLabel);
vh.tvDate = (TextView)convertView.findViewById(R.id.postDateLabel);
vh.thumb = (ImageView)convertView.findViewById(R.id.postThumb);
convertView.setTag(vh);
}
....................
}
3.注意:
除了上述情况以外,我们尽量不要直接使用,原因:
1.代码可读性:会给其它的程序猿造成困扰
2.由于setTag和getTag设置的是一个Object对象。可能会出现类的转换异常
只是,android4.0以后。有一个更好的方法:setTag(int key, Object tag)能够通过类似<k,v>键值对的方式存取。
未经同意不得用于商业目的
欢迎增加QQ群讨论:android开发联盟: 272209595