我有一个我想适应高度,保持纵横比。这是图像:
我希望红色带适合灰色行的高度,保持其纵横比(ImageView 的宽度应该增加)。我已经尝试使用 xml 中的 scaleType 属性,但没有一个可以按我的意愿工作。
请问有什么建议吗?
我有一个我想适应高度,保持纵横比。这是图像:
我希望红色带适合灰色行的高度,保持其纵横比(ImageView 的宽度应该增加)。我已经尝试使用 xml 中的 scaleType 属性,但没有一个可以按我的意愿工作。
请问有什么建议吗?
您应该能够更改自定义 ImageView 的此代码:
代码:
public class ImageViewScaleTypeTopCrop extends ImageView {
public ImageViewScaleTypeTopCrop(Context context) {
super(context);
setup();
}
public ImageViewScaleTypeTopCrop(Context context, AttributeSet attrs) {
super(context, attrs);
setup();
}
public ImageViewScaleTypeTopCrop(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setup();
}
private void setup() {
setScaleType(ScaleType.MATRIX);
}
@Override
protected boolean setFrame(int frameLeft, int frameTop, int frameRight, int frameBottom) {
float frameWidth = frameRight - frameLeft;
float frameHeight = frameBottom - frameTop;
if (getDrawable() != null) {
Matrix matrix = getImageMatrix();
float scaleFactor, scaleFactorWidth, scaleFactorHeight;
scaleFactorWidth = (float) frameWidth / (float) getDrawable().getIntrinsicWidth();
scaleFactorHeight = (float) frameHeight / (float) getDrawable().getIntrinsicHeight();
if (scaleFactorHeight > scaleFactorWidth) {
scaleFactor = scaleFactorHeight;
} else {
scaleFactor = scaleFactorWidth;
}
matrix.setScale(scaleFactor, scaleFactor, 0, 0);
setImageMatrix(matrix);
}
return super.setFrame(frameLeft, frameTop, frameRight, frameBottom);
}
}