0
如何縮小圖像比例以適合ImageView,但是要避免使用以上縮放比例?ImageView允許縮小比例,但不能縮小
已經解決它滑翔,在目標ImageView
加入
...
.transform(new FitCenter(context) {
@Override
protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
if (toTransform.getHeight() > outHeight || toTransform.getWidth() > outWidth)
return super.transform(pool, toTransform, outWidth, outHeight);
else
return toTransform;
}
})
...
和android:scaleType="center"
。
看來是沒有辦法只使用ImageView
屬性:(
我用滑翔得到這樣的行爲,但不想使用轉換。 – Alexey