Skip to content

Instantly share code, notes, and snippets.

@amyu
Created April 16, 2015 09:17
Show Gist options
  • Save amyu/207edb8408b5ac5307e9 to your computer and use it in GitHub Desktop.
Save amyu/207edb8408b5ac5307e9 to your computer and use it in GitHub Desktop.
public class MaxHeightListView extends ListView {
public MaxHeightListView(Context context) {
super(context);
}
public MaxHeightListView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MaxHeightListView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(MEASURED_SIZE_MASK, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
ViewGroup.LayoutParams params = getLayoutParams();
params.height = getMeasuredHeight();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment