Created
December 8, 2014 00:10
-
-
Save gouravd/6cfe74c30c6dcbf47299 to your computer and use it in GitHub Desktop.
SquareImageView
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(), getMeasuredWidth()); //Snap to width | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment