Last active
August 29, 2015 14:10
-
-
Save gouravd/82dfe5a7634912094b41 to your computer and use it in GitHub Desktop.
LongerRectangleImageView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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