什么是ImageView的默认ScaleType?
ImageView的默认ScaleType是什么?如果我在普通屏幕(320×480)上放置400像素x 400像素的图像而不指定ScaleType,图像将如何缩放?
谢谢。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/big_image" /> </RelativeLayout>
FIT_CENTER :
ImageView.ScaleType
FIT_CENTER
使用
CENTER
缩放图像。 从XML中,使用以下语法:android:scaleType="fitCenter"
。