Skip to content

Instantly share code, notes, and snippets.

@ixiyang
Created July 30, 2014 03:38
Show Gist options
  • Save ixiyang/3e3b63724db10a38cf06 to your computer and use it in GitHub Desktop.
Save ixiyang/3e3b63724db10a38cf06 to your computer and use it in GitHub Desktop.
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