我创建了一个布局。但在底部还有一个空白区域。我希望相对布局的内容位于屏幕的最底部。即搜索栏和底部的按钮。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/images">
<com.example.acer.myapplication.ZoomView
android:id="@+id/iop"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<SeekBar
android:id="@+id/seekBar7"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/button61"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_below="@id/seekBar7"
android:layout_centerInParent="true"
android:background="@drawable/play" />
</RelativeLayout>
</LinearLayout>
我希望底部的空白区域应该替换为相对布局的内容。 我上传了图片
答案 0 :(得分:2)
使用此代码:
<?xml version="1.0" encoding="utf-8"?>
<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="wrap_content"
android:orientation="vertical"
android:background="@drawable/images">
<com.example.acer.myapplication.ZoomView
android:id="@+id/iop"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
>
<SeekBar
android:id="@+id/seekBar7"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/button61"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_below="@id/seekBar7"
android:layout_centerInParent="true"
android:background="@drawable/play" />
</RelativeLayout>
</RelativeLayout>
答案 1 :(得分:0)
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
而不是wrap_content你应该把match_parent。
那会有所帮助。我希望你知道wrap_content和match_parent。如果你不看这个 https://developer.android.com/reference/android/view/ViewGroup.LayoutParams.html