我有一个沿着视图底部运行的装饰图像。它没有任何重复元素。我想要这个长图像以纵向和横向填充视图的底部边缘,在两者中占据相同的垂直空间。基本上,我需要将图像固定在左下方,并在右下方溢出屏幕。我到目前为止所尝试的(下面的示例)实际上将图像的水平范围适合屏幕边缘,并根据纵横比压缩高度。
<?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">
<!-- more... -->
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:scaleType="fitEnd"
android:background="#ff0000"
android:src="@drawable/foreground" />
<!-- more... -->
</RelativeLayout>
如何将图像锚定在左侧并将屏幕向右溢出?