RelativeLayout填充剩余空间

时间:2019-03-28 15:50:57

标签: android android-relativelayout

我必须在订单的同一行上显示3个按钮并在搜索栏上显示

Button --- Seekbar --- Button --- Button,其中三个Button具有固定的大小,Seekbar应该占据剩余空间,belwo代码可以正常工作,除了第一个按钮,实际上,它是不可见的,因为seekbar正在铺设它上面。

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:background="#555555">

        <ImageButton
            android:id="@+id/playPausBt"
            android:layout_width="60dp"
            android:layout_toLeftOf="@+id/seekbar"
            android:layout_height="match_parent" />

        <SeekBar
            android:id="@+id/seekbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="15dp"
            android:layout_marginRight="10dp"
            android:layout_toLeftOf="@+id/button_select_video"
            android:paddingLeft="10dp"
            android:paddingRight="20dp" />

        <Button
            android:id="@+id/button_select_video"
            android:layout_width="60dp"
            android:layout_height="55dp"
            android:layout_alignRight="@+id/buttonImageBrowse"
            android:layout_marginTop="3dp"
            android:layout_marginRight="84dp"
            android:layout_toLeftOf="@+id/buttonImageBrowse"
            android:background="@mipmap/video"
            android:textColor="@android:color/white"
            android:textSize="18sp"
            android:textStyle="bold" />

        <ImageButton
            android:id="@+id/buttonImageBrowse"
            android:layout_width="60dp"
            android:layout_height="50dp"
            android:layout_alignParentRight="true"
            android:layout_marginTop="5dp"
            android:layout_marginRight="14dp"
            android:background="@android:color/transparent"
            android:scaleType="fitXY"
            android:src="@mipmap/image" />

    </RelativeLayout>

enter image description here

1 个答案:

答案 0 :(得分:1)

在您的seekBar上使用android:layout_toRightOf,而不要在ImageButton上使用android:layout_toLeftOf

    <ImageButton
        android:id="@+id/playPausBt"
        android:layout_width="60dp"
        android:layout_height="wrap_content" />

    <SeekBar
        android:id="@+id/seekbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="15dp"
        android:layout_marginRight="10dp"
        android:layout_toRightOf="@id/playPausBt"
        android:layout_toLeftOf="@+id/button_select_video"
        android:paddingLeft="10dp"
        android:paddingRight="20dp" />