etsy / AndroidStaggeredGrid

An Android staggered grid view which supports multiple columns with rows of varying sizes.
https://github.com/etsy/AndroidStaggeredGrid
4.76k stars 1.13k forks source link

override onMeasure to expand list failed. #170

Open wsk900906 opened 9 years ago

wsk900906 commented 9 years ago

I want to expand this StaggeredGridview and use the method same as gridview: @Override public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int expandSpec = MeasureSpec.makeMeasureSpec( Integer.MAX_VALUE >> 2, MeasureSpec.UNSPECIFIED); super.onMeasure(widthMeasureSpec, expandSpec); ViewGroup.LayoutParams params = getLayoutParams(); params.height = getMeasuredHeight(); } but the list become to blank. Why? Could anyone can help me...