我正在尝试将图像与其父母底部对齐。基本思想是使图像适合屏幕宽度,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
值,我该如何解决这个问题?