Last active
September 16, 2017 04:15
-
-
Save lesleh/7080955 to your computer and use it in GitHub Desktop.
ImageView that scales like centerCrop, but instead of showing the centre of the image, it shows 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
import android.content.Context; | |
import android.graphics.Matrix; | |
import android.util.AttributeSet; | |
import android.widget.ImageView; | |
/** | |
* ImageView that scales like centerCrop, but instead of showing the centre of the image, it shows the top. | |
*/ | |
public class TopCropImageView extends ImageView { | |
public TopCropImageView(Context context) { | |
super(context); | |
init(); | |
} | |
public TopCropImageView(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
init(); | |
} | |
public TopCropImageView(Context context, AttributeSet attrs, int defStyle) { | |
super(context, attrs, defStyle); | |
init(); | |
} | |
private void init() { | |
setScaleType(ScaleType.MATRIX); | |
} | |
@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((originalImageWidth > frameWidth ) || (originalImageHeight > frameHeight )) { | |
// 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