标签: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