Android设置GridView高度

时间:2015-10-20 04:16:36

标签: android gridview height

我有一个带有可变高度单元格的GridView。我希望行与行中所有最大的单元格一样高。我可以调整单元格高度在一行上保持一致,但我无法设置GridView的高度并让它实际更改。

另一个问题是这个GridView在ScrollView中,所以有一个滚动条是不可能的。

这是一个问题,因为GridView确定整个网格高度的方式是取第一个单元格并将其乘以行数。如果行可以具有不同的高度,则这是一个明显的问题。例如:

GridView auto height calc wrong

我尝试了很多方法来更新它,但我确信我遗漏了一些简单的东西。我试图在ViewTreeObserver中进行更新,所以我知道GridView已经渲染,所以我的计算是正确的(它们是)。代码:

        ViewTreeObserver treeListener = mGridView.getViewTreeObserver(); 
        treeListener.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { 
            @SuppressLint("NewApi")
            @SuppressWarnings("deprecation")
            @Override 
            public void onGlobalLayout() { 
                if(Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
                    mGridView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
                } 
                else {
                    mGridView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
                }

                // Calculate the new height we want for the GridView
                int newHeight = determineCellHeight(mGridView, mNumberOfColumns, mRows);

                ViewGroup.LayoutParams params = mGridView.getLayoutParams();
                params.height = newHeight;
                mGridView.setLayoutParams(params);

                // Have tried all of these too!!!
//              mAdapter.notifyDataSetChanged();
//              mGridView.requestLayout();
//              mGridView.invalidateViews();
//              mGridView.refreshDrawableState();

//              mGridView.setLayoutParams(new LinearLayout.LayoutParams( LayoutParams.MATCH_PARENT, newHeight + 10));
//              mGridView.setLayoutParams(new LinearLayout.LayoutParams( LayoutParams.MATCH_PARENT, newHeight + 10)); 
//                 View lastChild = mGridView.getChildAt( mGridView.getChildCount() - 1 );
//                 mGridView.setLayoutParams( new LinearLayout.LayoutParams( LayoutParams.MATCH_PARENT, lastChild.getBottom() ) );
//                  mAdapter.notifyDataSetChanged();
//                  mGridView.invalidateViews();
//                  mGridView.setMinimumHeight(newHeight);
//                  mGridView.requestLayout();
//                  mGridView.refreshDrawableState();

            } 
        });

我开始怀疑这是否可能,尽管众多Stackflow似乎表明它是......

1 个答案:

答案 0 :(得分:0)

几个月前我确实遇到过这个问题,所以有一个简单的解决方案。您需要子类化自己的GridView,并覆盖“onMeasure()”方法,以便计算您的需求的实际高度。这是实施。

public class ExpandableHeightGridView extends GridView {

    boolean expanded = false;

    public ExpandableHeightGridView(Context context) {
        super(context);
    }

    public ExpandableHeightGridView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ExpandableHeightGridView(Context context, AttributeSet attrs,
            int defStyle) {
        super(context, attrs, defStyle);
    }

    public boolean isExpanded() {
        return expanded;
    }

    public void setExpanded(boolean expanded) {
        this.expanded = expanded;
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        if (isExpanded()) {
            int expandSpec = MeasureSpec.makeMeasureSpec(MEASURED_SIZE_MASK,
                    MeasureSpec.AT_MOST);
            super.onMeasure(widthMeasureSpec, expandSpec);
            ViewGroup.LayoutParams params = getLayoutParams();
            params.height = getMeasuredHeight();
        } else {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        }
    }

}

希望它有所帮助。