假设我从API获取了一些图像.我不知道图像的尺寸会提前是什么,但我知道我希望该图像成为我设置为某个特定尺寸的ImageView的src.我想要从API获得的任何图像来填充整个ImageView,我想保留纵横比,我不在乎一个尺寸(宽度或高度)是否对于视图的设置尺寸变得太大 – 所以我使用centerCrop.
<ImageView
android:layout_width="400px"
android:layout_height="300px"
android:scaleType="centerCrop" />
如果从API返回的图像是这样的:
当它被设置为ImageView的src时,结果将类似于此(阴影部分被裁剪掉):
但是,我得到一个请求,我们应该始终显示图像的顶部并从下往上裁剪.所以期望的结果是这样的:
我确信这是可能的,但我是一个在他的联盟中运作的网络人.是以某种方式扩展ImageView,还是尝试使用scaleType =“matrix”和setImageMatrix(),或者某些第三个未提及的选项?
解决方法:
import android.content.Context;
import android.graphics.Matrix;
import android.widget.ImageView;
/**
* ImageView to display top-crop scale of an image view.
*
* @author Chris Arriola
*/
public class TopCropImageView extends ImageView {
public TopCropImageView(Context context) {
super(context);
setScaleType(ScaleType.MATRIX);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
recomputeImgMatrix();
}
@Override
protected boolean setFrame(int l, int t, int r, int b) {
recomputeImgMatrix();
return super.setFrame(l, t, r, b);
}
private void recomputeImgMatrix() {
final Matrix matrix = getImageMatrix();
float scale;
final int viewWidth = getWidth() - getPaddingLeft() - getPaddingRight();
final int viewHeight = getHeight() - getPaddingTop() - getPaddingBottom();
final int drawableWidth = getDrawable().getIntrinsicWidth();
final 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);
}
}