解决ScrollView与ListView嵌套得冲突问题

  这类问题简单来说就是一个高度测量的问题,由于ScrollView的引入,无法正确的测量出ListView的高度,导致显示不完全甚至不显示的问题。重写ListView的onMeasure方法可处理。

public class CustListView extends ListView {
    public CustListView(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
    }

    public CustListView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
    }

    public CustListView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        // TODO Auto-generated constructor stub
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expandSpec);
    }
}

End

笔者的Github Blog,希望各位大大提意见,点个star,谢谢
传送门:WusyBlog

求互粉互赞,互赞所有文章可以私聊我。哈哈,希望我们的原创文章能让更多朋友看到,一起变强。

笔者新开通了微信公众号——饮水思源|wusy 计划持续运营,每日为您分享Android干货、原创文章。微信扫描下方的二维码关注我,开发学习路上不迷路。谢谢各位


解决ScrollView与ListView嵌套得冲突问题_第1张图片
饮水思源|wusy.jpg

你可能感兴趣的:(解决ScrollView与ListView嵌套得冲突问题)