当前位置 : 主页 > 编程语言 > c++ >

解决grid与scoll嵌套造成行数不正确

来源:互联网 收集:自由互联 发布时间:2021-07-03
gistfile1.txt //使用此类替换GridView 即可public class WrapHeightGridView extends GridView { public WrapHeightGridView(Context context) { this(context, (AttributeSet)null); } public WrapHeightGridView(Context context, AttributeSet at
gistfile1.txt
//使用此类替换GridView 即可
public class WrapHeightGridView extends GridView {
    public WrapHeightGridView(Context context) {
        this(context, (AttributeSet)null);
    }

    public WrapHeightGridView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public WrapHeightGridView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int heightSpec = MeasureSpec.makeMeasureSpec(536870911, -2147483648);
        super.onMeasure(widthMeasureSpec, heightSpec);
    }
}
上一篇:spring jdbc封装
下一篇:Rxjava仿真定时器
网友评论