私は大きな画像myImage.pngを持っています(その薄暗いのは1536 x 784です):

この画像をレイアウトの下部に配置し、均一に拡大縮小して幅に合わせます。

レイアウトは
<RelativeLayout 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" >
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/myImage"
android:adjustViewBounds="true"
android:layout_alignParentBottom="true"
android:scaleType="fitCenter" >
</ImageView>
</RelativeLayout>
layout_width、、layout_heightの組み合わせadjustViewBoundsを何十回も試しましたがscaleType、何も役に立ちませんでした。常に次のようになります。

お願い助けて。