1

我有一个 80dp * 80dp 的位图。ImageView 大小会自动缩放。
ImageView 大小为:130DP * 130DP(大于位图大小)。

我试图使位图适合 imageView 大小(我不介意失去图像质量)。

这是一些代码:

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
     xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

   <com.inturnex.safecam.SquareImageView 
       android:id="@+id/imageView" 
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    android:src="@drawable/locked_image"
    android:adjustViewBounds="true"
    android:scaleType="fitXY"
    />


</LinearLayout>

我正在以编程方式设置位图。ImageView 大小为 130DP,但我看到的图像大小为 80DP(作为原始位图,它不会拉伸以适应 ImageView 大小)。

我能做些什么来完成这项任务?谢谢!

编辑: SquareImageView 实施:

public class SquareImageView extends ImageView {
    public SquareImageView(Context context) {
        super(context);
    }

    public SquareImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public SquareImageView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        setMeasuredDimension(getMeasuredWidth(), getMeasuredWidth()); //Snap to width
    }
}
4

1 回答 1

0

您可能会尝试使用缩放到 Matrix(以编程方式或在 xml 中)

imageView.setScaleType(ScaleType.MATRIX);
Matrix matrix = new Matrix();
matrix.setRectToRect(drawableRect, viewRect, Matrix.ScaleToFit.FILL);
imageView.setBitmap(bitmap);

在这里,Dalvik 获取您的图像,应用缩放矩阵以填充您的 ImageView。你的 drawableRect 应该包含你的 Bitmap 的尺寸,你的 viewRect,你的imageView.

于 2013-07-23T13:34:07.323 回答