ScrollView 中嵌套ExpandableListView时的显示问题处理方法

:如果需要ExpandableListView的使用请移步:https://blog.csdn.net/qq_36355271/article/details/86472262

ScrollView 中嵌套ExpandableListView 一行代码解决显示问题

新建NestedExpandaleListView 继承ExpandableListView 在onMeasure中加入

int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);

即可在ScrollView中正常使用

public class NestedExpandaleListView extends ExpandableListView {
    public NestedExpandaleListView(Context context, AttributeSet attrs){
        super(context,attrs);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

        int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,

                MeasureSpec.AT_MOST);

        //将重新计算的高度传递回去
        super.onMeasure(widthMeasureSpec, expandSpec);
    }
}

 

自己项目遇到问题 在网上查到的  使用非常 有效,在此记录 希望能帮到别人

如果需要ExpandableListView的使用请移步:https://blog.csdn.net/qq_36355271/article/details/86472262

你可能感兴趣的:(android,自定义控件)