码迷,mamicode.com
首页 > 移动开发 > 详细

android,解决ListView,GridView滑动冲突。

时间:2014-10-10 22:47:04      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:android   os   sp   div   on   bs   htm   as   res   

以gridView为例,如果gridView在里面,则重写GridView中的方法

/**
 * 重写该方法,达到使ListView适应ScrollView的效果
 */
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}

android,解决ListView,GridView滑动冲突。

标签:android   os   sp   div   on   bs   htm   as   res   

原文地址:http://www.cnblogs.com/aidonglei/p/4016760.html

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