android解决Viewpager设置高度为wrap_content无效的方法
Posted jhcelue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android解决Viewpager设置高度为wrap_content无效的方法相关的知识,希望对你有一定的参考价值。
今天发现设置viewpager高度为wrap_content时并没作用。stackoverflow给出了解决方式,就是自己定义viewpager,重写onMesure()方法:
public class WrapContentHeightViewPager extends ViewPager { /** * Constructor * * @param context the context */ public WrapContentHeightViewPager(Context context) { super(context); } /** * Constructor * * @param context the context * @param attrs the attribute set */ public WrapContentHeightViewPager(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int height = 0; for(int i = 0; i < getChildCount(); i++) { View child = getChildAt(i); child.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED)); int h = child.getMeasuredHeight(); if(h > height) height = h; } heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY); super.onMeasure(widthMeasureSpec, heightMeasureSpec); } }
使用的时候用WrapContentHeightViewPager取代viewpager就ok了
以上是关于android解决Viewpager设置高度为wrap_content无效的方法的主要内容,如果未能解决你的问题,请参考以下文章
如何将 Android ViewPager2 的高度包装到当前项目的高度?
Android嵌套滑动控件的冲突解决和ViewPager适配当前子控件高度不留空白的办法