我想将从 sd 卡加载的图像缩放到图像视图中。
问题是,每当我从 sd 卡加载图像时,图像就会全屏显示,并且我已经根据其他问题设置了所有参数 fill_parent viewbounds scaletype 等。
应该怎么做?
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/Frame"
android:layout_alignLeft="@+id/Load1"
android:adjustViewBounds="true"
android:cropToPadding="true"
android:scaleType="fitXY"
android:src="@android:drawable/alert_light_frame" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="14dp"
android:scaleType="fitXY"
android:src="@android:drawable/alert_light_frame" />
这是我的图像视图代码你能告诉我要改变什么,以便图像根据图像视图大小出现吗