package de.theknut.xposedgelsettings.ui.preferences; import android.content.Context; import android.util.AttributeSet; import android.widget.GridView; /** * Created by Alexander Schulz on 13.06.2014. * http://stackoverflow.com/a/12931731/809277 */ public class MyGridView extends GridView { public MyGridView(Context context) { super(context); } public MyGridView(Context context, AttributeSet attrs) { super(context, attrs); } public MyGridView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { // Do not use the highest two bits of Integer.MAX_VALUE because they are // reserved for the MeasureSpec mode int heightSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, heightSpec); getLayoutParams().height = getMeasuredHeight(); } }