Created
January 23, 2014 13:18
-
-
Save benvium/8578297 to your computer and use it in GitHub Desktop.
Android ImageView subclass that (1) fills the image to the width of the image view (2) aligns to the bottom edge (3) crops off the top
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
/** | |
* Align image to bottom, fill width. and crop top if needed. | |
* | |
* http://stackoverflow.com/questions/6330084/imageview-scaling-top-crop | |
* https://gist.github.com/arriolac/3843346 | |
*/ | |
import android.content.Context; | |
import android.graphics.Matrix; | |
import android.util.AttributeSet; | |
import android.widget.ImageView; | |
/** | |
* | |
*/ | |
public class TopCropImageView extends ImageView { | |
public TopCropImageView(Context context) { | |
super(context); | |
setup(); | |
} | |
public TopCropImageView(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
setup(); | |
} | |
public TopCropImageView(Context context, AttributeSet attrs, int defStyle) { | |
super(context, attrs, defStyle); | |
setup(); | |
} | |
private void setup() { | |
setScaleType(ScaleType.MATRIX); | |
} | |
// @Override | |
// protected boolean setFrame(int l, int t, int r, int b) { | |
// Matrix matrix = getImageMatrix(); | |
// | |
// float scale; | |
// int viewWidth = getWidth() - getPaddingLeft() - getPaddingRight(); | |
// int viewHeight = getHeight() - getPaddingTop() - getPaddingBottom(); | |
// int drawableWidth = getDrawable().getIntrinsicWidth(); | |
// int drawableHeight = getDrawable().getIntrinsicHeight(); | |
// | |
// if (drawableWidth * viewHeight > drawableHeight * viewWidth) { | |
// scale = (float) viewHeight / (float) drawableHeight; | |
// } else { | |
// scale = (float) viewWidth / (float) drawableWidth; | |
// } | |
// | |
// matrix.setScale(scale, scale); | |
// setImageMatrix(matrix); | |
// | |
// return super.setFrame(l, t, r, b); | |
// } | |
@Override | |
protected boolean setFrame(int frameLeft, int frameTop, int frameRight, int frameBottom) { | |
float frameWidth = frameRight - frameLeft; | |
float frameHeight = frameBottom - frameTop; | |
float originalImageWidth = (float)getDrawable().getIntrinsicWidth(); | |
float originalImageHeight = (float)getDrawable().getIntrinsicHeight(); | |
float usedScaleFactor = 1; | |
if((frameWidth > originalImageWidth) || (frameHeight > originalImageHeight)) { | |
// If frame is bigger than image | |
// => Crop it, keep aspect ratio and position it at the bottom and center horizontally | |
float fitHorizontallyScaleFactor = frameWidth/originalImageWidth; | |
float fitVerticallyScaleFactor = frameHeight/originalImageHeight; | |
usedScaleFactor = Math.max(fitHorizontallyScaleFactor, fitVerticallyScaleFactor); | |
} | |
float newImageWidth = originalImageWidth * usedScaleFactor; | |
float newImageHeight = originalImageHeight * usedScaleFactor; | |
Matrix matrix = getImageMatrix(); | |
matrix.setScale(usedScaleFactor, usedScaleFactor, 0, 0); // Replaces the old matrix completly | |
matrix.postTranslate((frameWidth - newImageWidth) /2, frameHeight - newImageHeight); | |
setImageMatrix(matrix); | |
return super.setFrame(frameLeft, frameTop, frameRight, frameBottom); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment