用于简单自定义gridview控件

来源:互联网 发布:视频宣传片制作软件 编辑:程序博客网 时间:2024/06/01 23:47
public mylist(Context context) {    super(context);}public mylist(Context context, AttributeSet attrs) {    super(context, attrs);}public mylist(Context context, AttributeSet attrs, int defStyleAttr) {    super(context, attrs, defStyleAttr);}@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {    int h = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);    super.onMeasure(widthMeasureSpec, h);}