Skip to content

Instantly share code, notes, and snippets.

@gouravd
Last active August 29, 2015 14:10
Show Gist options
  • Save gouravd/82dfe5a7634912094b41 to your computer and use it in GitHub Desktop.
Save gouravd/82dfe5a7634912094b41 to your computer and use it in GitHub Desktop.
LongerRectangleImageView
public class SquareImageView extends ImageView
{
public SquareImageView(Context context)
{
super(context);
}
public SquareImageView(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public SquareImageView(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
setMeasuredDimension(getMeasuredWidth(), (int)( ((getMeasuredWidth() * 5) / 4) + 0.5f)); //Snap to width
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment