美文网首页
固定listview高度

固定listview高度

作者: 广陵墨玉刀 | 来源:发表于2018-11-15 17:30 被阅读0次

嵌套listview时,对子listview进行高度固定,

@Override

    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

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

                MeasureSpec.AT_MOST);

        super.onMeasure(widthMeasureSpec, expandSpec);

    }

相关文章

网友评论

      本文标题:固定listview高度

      本文链接:https://www.haomeiwen.com/subject/yozyfqtx.html