ImageView的默认ScaleType是什么?如果我在普通屏幕(320x480)上放置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>
答案 0 :(得分:88)
ImageView.ScaleType
FIT_CENTER
使用
CENTER
缩放图像。从XML中,使用以下语法:android:scaleType="fitCenter"
。