Created
April 2, 2015 01:26
-
-
Save defHLT/fb39189c0bad5d07cdbd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@Override | |
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { | |
super.onMeasure(widthMeasureSpec, heightMeasureSpec); | |
float scale = getMeasuredWidth() / mMaxImageWidth; | |
int width = Math.round(getMeasuredWidth() * scale); | |
int height = Math.round(getMeasuredHeight() * scale); | |
setMeasuredDimension(width, height); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment