我有一个方形可绘制图像(drawable-l 为 1280x1280),我希望它根据设备所在的方向(横向、纵向)进行裁剪。我希望图像始终居中,缩放以填充最大的一侧,并剪掉较小的一侧。
这可能吗?
编辑:
添加到下面的 Pramod J George 的回答中,如果您使用带有 scaleType:centerCrop 的 ImageView 并将其放在 FrameLayout 内的主布局旁边,这将完美地工作!
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/background"
android:scaleType="centerCrop"
android:src="@drawable/background" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/logo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/logo"
android:src="@drawable/logo" />
</LinearLayout>
</FrameLayout>