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

android ScrollView 嵌套 ListView 不让listView滑动

时间:2014-08-14 20:26:09      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:android   os   htm   res   on   sp   return   view   

1、重写listview的onMeasure()

/**
* 解决listview高度显示不正确
*/
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);

}

2、补货listview的ontouch中的move事件,return true

android ScrollView 嵌套 ListView 不让listView滑动,布布扣,bubuko.com

android ScrollView 嵌套 ListView 不让listView滑动

标签:android   os   htm   res   on   sp   return   view   

原文地址:http://www.cnblogs.com/jjxuan/p/3913211.html

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