1

我正在尝试将图像与其父母底部对齐。基本思想是使图像适合屏幕宽度,wrap_content用于高度,然后将所有内容与父级底部对齐。不幸的是,结果是底部有 1-2dp 的边距,我无法摆脱。我在这里将父母的背景更改为蓝色,所以很明显:

<RelativeLayout
    android:layout_gravity="center_horizontal"
    android:id="@+id/contentView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

   <ImageView
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:layout_alignParentBottom="true"
       android:adjustViewBounds="true"
       android:scaleType="centerCrop"
       android:src="@drawable/top_graphic" />
//...
</RelativeLayout>

这是布局生成器中的样子:

在此处输入图像描述

底部的那条蓝线我无法摆脱。我显然不想使用直接dp值,我该如何解决这个问题?

4

1 回答 1

0

尝试这个

<ImageView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_alignParentBottom="true"
      android:adjustViewBounds="true"
      android:scaleType="fitXY"
      android:src="@drawable/top_graphic" />
于 2018-01-19T08:54:10.613 回答