我有一个 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
}
}