自定义ListView 、GradView 重写onMeasure方法让其正确显示
1 继承原始的
2 重写onMeasure方法
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
posted on 2017-03-25 15:14 robert_hly 阅读(162) 评论(0) 编辑 收藏 举报