我正在设计一款必须在所有Android设备上看起来都不错的应用。在我想要设置背景的活动中。我想要使用的图像在右下角有一个重要的数字 我想要的是: - 保持纵横比 - 必须显示原始图像的右下角 - 全屏 - 必须处理肖像和风景
我已尝试过所有比例尺选项,适合选项不会填满整个屏幕和所有侧面的中心作物(因此它是右下角部分的切片)。
答案 0 :(得分:3)
首先为您的drawable创建一个imageView,并通过将<ImageView>
更改为<com.packagename.CenterCropShiftsUp>
来自定义它,并将scaleType设置为centerCrop。
在我刚刚提到的包中创建CenterCropShiftsUp.java,并使用此代码向上移动drawable:
package nl.mijnverzekering.views;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
public class CenterCropShiftsUp extends ImageView
{
public CenterCropShiftsUp(Context context, AttributeSet attrs)
{
super(context, attrs);
}
@Override
protected boolean setFrame(int l, int t, int r, int b)
{
int drawableWidth = getDrawable().getIntrinsicWidth();
int drawableHeight = getDrawable().getIntrinsicHeight();
int viewWidth = r - getPaddingLeft() - getPaddingRight();
int viewHeight = b - getPaddingTop() - getPaddingBottom();
float heightRatio = 1 / ((float) drawableHeight / (float) viewHeight);
float widthRatio = 1 / ((float) drawableWidth / (float) viewWidth);
// Choose the biggest ratio as scaleFactor
// (centerCrop does the same: the drawable never scales down to leave part of the screen empty)
float scale = heightRatio > widthRatio ? heightRatio : widthRatio;
int newDrawableHeight = (int) (scale * (float) drawableHeight);
// Shifts the t (top) of the imageFrame up (t -=)
// This calculation aligns the bottom of the drawable to the bottom of the screen
t -= (newDrawableHeight - b);
return super.setFrame(l, t, r, b);
}
}
首先计算图像的scaleFactor,然后使用此比例计算新的drawableHeight(正如centerCrop所做的那样)。使用此高度,您可以计算ImageView的帧应向上移动多远(使用setFrame()
使绘图的底部与屏幕底部对齐)。
由于centerCrop本身的属性,右边的对齐方式(当然也会自动修复)。
答案 1 :(得分:1)
这似乎有点迟了,但我想发布我的答案。我需要左上角移动视图,而宽度始终被裁剪。我找到了这个库(https://github.com/cesards/CropImageView),但我决定只使用它的一部分。它最终覆盖setFrame
并在我的自定义图片视图的构造函数中将比例类型设置为Matrix
。
@Override
protected boolean setFrame(int l, int t, int r, int b) {
boolean changed = super.setFrame(l, t, r, b);
int viewWidth = r - getPaddingLeft() - getPaddingRight();
int viewHeight = b - getPaddingTop() - getPaddingBottom();
if (viewHeight > 0 && viewWidth > 0) {
final Matrix matrixCopy = new Matrix();
matrixCopy.set(getImageMatrix());
final Drawable drawable = getDrawable();
int drawableWidth = drawable.getIntrinsicWidth();
int drawableHeight = drawable.getIntrinsicHeight();
float scaleY = (float) viewHeight / (float) drawableHeight;
float scaleX = (float) viewWidth / (float) drawableWidth;
float scale = scaleX > scaleY ? scaleX : scaleY;
matrixCopy.setScale(scale, scale);
setImageMatrix(matrixCopy);
}
return changed;
}