Created
July 30, 2014 03:38
-
-
Save ixiyang/3e3b63724db10a38cf06 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
| public class ResizableImageView extends ImageView { | |
| public ResizableImageView(Context context, AttributeSet attrs) { | |
| super(context, attrs); | |
| } | |
| @Override | |
| protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){ | |
| Drawable d = getDrawable(); | |
| if(d!=null){ | |
| // ceil not round - avoid thin vertical gaps along the left/right edges | |
| int width = MeasureSpec.getSize(widthMeasureSpec); | |
| int height = (int) Math.ceil((float) width * (float) d.getIntrinsicHeight() / (float) d.getIntrinsicWidth()); | |
| setMeasuredDimension(width, height); | |
| }else{ | |
| super.onMeasure(widthMeasureSpec, heightMeasureSpec); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment