我有一个图像视图,稍后将包含一些随机大小的图像我想用图像填充图像视图但保持比例(所以不要使用比例类型 FITXY 或 centercrop,因为它会修剪我的图像的一部分)
我怎样才能做到这一点 ?
在这个测试代码中,我的图像左右两边都有空格
<?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:id="@+id/imgTest"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:src="@drawable/test"
/>