listview 和 scrollview 一起使用 listview 测量高度不准确
Posted 海若初明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了listview 和 scrollview 一起使用 listview 测量高度不准确相关的知识,希望对你有一定的参考价值。
自定义 listview 重写 onmeasure方法
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
以上是关于listview 和 scrollview 一起使用 listview 测量高度不准确的主要内容,如果未能解决你的问题,请参考以下文章