我有一个大图像 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
请帮帮我。