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

listView添加点击效果

时间:2015-05-11 20:14:00      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:default   return   public   method   false   

  1. 在adapter的getView方法中:

convertView.setOnTouchListener(this);

2.重写方法:

@Override
	public boolean onTouch(View v, MotionEvent event) {
		// TODO Auto-generated method stub
		switch (event.getAction()) {
		case MotionEvent.ACTION_DOWN:
			v.setBackgroundColor(context.getResources().getColor(R.color.text_color_blue));
			break;

		default:
			break;
		}
		return false;
	}

3.就这样;

listView添加点击效果

标签:default   return   public   method   false   

原文地址:http://7183397.blog.51cto.com/7173397/1650350

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