我正在尝试创建 android 应用程序,我需要在相对布局的底部放置一个波形图像。但是,这是屏幕底部和波形图像之间的空白区域。请查看下面的 xml 代码和屏幕截图,并让我知道我可能出错的地方。
<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"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/imageship"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:src="@drawable/ship" />
<ImageView
android:id="@+id/imagewaves"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:src="@drawable/waves"
android:visibility="gone" />
<ImageView
android:id="@+id/imagewaveshigh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:src="@drawable/waveshigh"
android:visibility="visible" />
</RelativeLayout>