我正在尝试安装一个图像,并在其下方有一个带有一些黑色背景和白色文本的布局。我的问题是布局最终在图像和文本之间留下了空间,我不明白为什么:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitStart" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="15dp"
android:layout_below="@+id/image" >
<TextView
style="@style/text_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- Couple more elements -->
</RelativeLayout>
</RelativeLayout>
我希望这第二个 15dp 的 RelativeLayout 触摸图像的底部,但除非我将图像高度更改为较小的值,否则它会留下一些空间。此布局指定如何在其下方显示图像 + 一些文本,但我总共有 4 个图像使用此布局以 2x2 显示加载到屏幕上。(每张图片占屏幕的 25%)。
知道如何使 RelativeLayout 与图像底部完全对齐吗?