文章分析下来是没有问题,不知道是不是自己疏忽了代码还是有问题的
ViewGroup.LayoutParams params = child.getLayoutParams();
int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec,0,params.height);
child.measure(widthMeasureSpec, childHeightMeasureSpec);
ViewPager wrap_content 无效原理分析,解决方案现象 ViewPager 在设置高度为 android:layout_height=“wrap_content” 时并没有使用子view的高度,反而像是适应父view的高度,...