我创建了一个带有标题图像的活动。此标题图像最初是使用 ImageView 在 Activity 的布局 xml 中创建的,其中 scaleType 设置为 centerCrop。这就是我想要的,它使图像居中,在纵向模式下左右剪切,在横向模式下全部显示。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="30dp"
android:paddingBottom="6dp"
android:paddingLeft="6dp"
android:paddingRight="6dp"
android:background="#919EAC"
android:orientation="vertical" >
<ImageView
android:id="@+id/header_image"
android:layout_width="match_parent"
android:layout_height="120dp"
android:contentDescription="@string/header_description"
android:scaleType="centerCrop"
android:src="@drawable/header" />
.... <other views> ...
我想将其替换为背景可绘制对象,以便我可以使用标题图像空间来显示数据,并且它可以让我在不同的活动中重复相同的布局。
出于这个原因,我创建了一个可在 android:background 属性中引用的可绘制对象:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle" >
<solid android:color="#919EAC" />
</shape>
</item>
<item>
<bitmap
android:antialias="true"
android:gravity="top|center_horizontal"
android:src="@drawable/header" />
</item>
</layer-list>
此可绘制对象定义了布局将定义的彩色背景,并定义了一个标题图像,否则该图像将作为 ImageView 包含在布局中。
但是现在我的图像被缩放了,而我希望它被裁剪。
检查Android文档我尝试了其他重力模式,例如
android:gravity="top|clip_horizontal"
但它似乎仍然与图像视图显示/缩放不同。
背景可绘制的正确定义是什么?