我在尝试将方形图像(大约 315dp x 315dp)缩放到应该填充宽度并具有大约 200dp 高度的图像时遇到了一些麻烦。
基本上,我要做的就是在将图像缩放为更矩形的形状时正确地保留图像的纵横比。有任何想法吗?这是我尝试过的:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" >
<ImageView
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="centerCrop" />
</LinearLayout>