Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save codeswimmer/901722 to your computer and use it in GitHub Desktop.

Select an option

Save codeswimmer/901722 to your computer and use it in GitHub Desktop.
Android: quick way to resize a ViewGroup
public static final void resizeViewGroup(ViewGroup viewGroup, int width, int height) {
viewGroup.setMinimumWidth(width);
viewGroup.setMinimumHeight(height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment