将按钮和搜索栏放入容器中

Put Button and Seek Bar in Container

我正在尝试让我的搜索栏和我的 2 个按钮位于搜索框下方的 space 中。 (我在试图放置搜索栏和按钮的地方画了黑色)我附上了一张图片以更好地解释我希望我的布局看起来像什么。我尝试更改为框架布局并添加约束,但我不知道自己做错了什么。每次我添加约束并移动一个 1 按钮时,其他所有内容都集中在左上角。他们是我应该使用的特定布局,以便在 space 中获得我的搜索栏,在右下角获得我的 2 按钮吗? 这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <EditText
        android:id="@+id/searchEditText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="16dp"
        android:ems="10"
        android:inputType="textPersonName"
        app:layout_constraintEnd_toStartOf="@+id/searchButton"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/searchButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="16dp"
        android:text="@string/form_search_button"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


    <FrameLayout
        android:id="@+id/container1"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginStart="16dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="16dp"
        android:layout_marginBottom="16dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/searchButton"
        app:layout_constraintVertical_bias="0.0">

        <Button
            android:id="@+id/stopButton"
            android:layout_width="97dp"
            android:layout_height="38dp"
            android:layout_marginStart="24dp"
            android:layout_marginLeft="24dp"
            android:layout_marginTop="24dp"
            android:layout_marginEnd="24dp"
            android:layout_marginRight="24dp"
            android:layout_marginBottom="18dp"
            android:hint="Stop"
            android:text="@string/stop"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent" />

        <Button
            android:id="@+id/pauseButton"
            android:layout_width="85dp"
            android:layout_height="34dp"
            android:hint="pause"
            android:text="@string/pause" />

        <SeekBar
            android:id="@+id/seekBar"
            android:layout_width="378dp"
            android:layout_height="12dp"
            android:layout_marginStart="16dp"
            android:layout_marginEnd="123dp" />
    </FrameLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

我猜在搜索框下方,你的意思是同一行的 SeekBar 和 2 个按钮,但我看不懂你的绘图。

你应该为此使用 LinearLayout。

1) 如果您希望所有 3 个都在同一行,那么您应该这样做

<LinearLayout
        android:orientation="horizontal"
        android:weightSum="1"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:gravity="center_vertical">

    <androidx.appcompat.widget.AppCompatSeekBar
            android:layout_weight="1"
            android:layout_width="0dp" android:layout_height="wrap_content"/>

    <com.google.android.material.button.MaterialButton
            android:layout_width="wrap_content" android:layout_height="wrap_content"/>

    <com.google.android.material.button.MaterialButton
            android:layout_width="wrap_content" android:layout_height="wrap_content"/>

</LinearLayout>

2) 如果你想在一行中搜索栏并且在该搜索栏下方有 2 个按钮但在一行中那么

<LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent" android:layout_height="wrap_content">

    <androidx.appcompat.widget.AppCompatSeekBar
            android:layout_width="match_parent" android:layout_height="wrap_content"/>

    <LinearLayout
            android:orientation="horizontal"
            android:weightSum="2"
            android:layout_width="match_parent" android:layout_height="wrap_content"
            android:gravity="center_vertical">

        <com.google.android.material.button.MaterialButton
                android:layout_weight="1"
                android:layout_width="wrap_content" android:layout_height="wrap_content"/>

        <com.google.android.material.button.MaterialButton
                android:layout_weight="1"
                android:layout_width="wrap_content" android:layout_height="wrap_content"/>

    </LinearLayout>

</LinearLayout>

如果可能的话,您可以为按钮指定特定的宽度。请忽略 AppCompatSeekBar 和 Material 按钮。它将以同样的方式在 SeekBar 和 Button 上工作。

如果需要,您也可以在屏幕底部放置 2 个按钮,然后 SeekBar 和 LinearLayout(由 2 个按钮组成)的 parent 应该是具有高度匹配的相对布局 parent 和LinearLayout(由 2 个按钮组成)应对齐 parent 底部。

更新:

如您所愿。它可能略有不同,但您现在可以修改它。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/containerSearch"
        android:orientation="horizontal"
        android:weightSum="1"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_margin="16dp">

        <EditText
            android:id="@+id/searchEditText"
            android:layout_weight="1"
            android:layout_width="0dp" android:layout_height="wrap_content"
            android:ems="10"
            android:inputType="textPersonName"
            app:layout_constraintEnd_toStartOf="@+id/searchButton"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            android:layout_marginEnd="8dp"/>

        <Button
            android:id="@+id/searchButton"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:layout_marginStart="8dp"/>

    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:weightSum="5"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@+id/containerSearch"
        android:layout_margin="16dp">

        <RelativeLayout
            android:layout_weight="2"
            android:layout_width="0dp"
            android:layout_height="wrap_content" />

        <SeekBar
            android:id="@+id/seekBar"
            android:layout_weight="3"
            android:layout_width="0dp" android:layout_height="12dp"/>

    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:gravity="end"
        android:layout_margin="24dp"
        android:weightSum="5"
        app:layout_constraintBottom_toBottomOf="parent">

        <RelativeLayout
            android:layout_weight="2"
            android:layout_width="0dp"
            android:layout_height="wrap_content" />

        <LinearLayout
            android:orientation="horizontal"
            android:weightSum="2"
            android:layout_weight="3"
            android:layout_width="0dp" android:layout_height="wrap_content"
            android:layout_margin="16dp">

            <Button
                android:id="@+id/pauseButton"
                android:text="PAUSE"
                android:layout_weight="1"
                android:layout_width="0dp" android:layout_height="40dp"
                android:hint="pause" 
                android:layout_marginEnd="8dp"/>

            <Button
                android:id="@+id/stopButton"
                android:text="STOP"
                android:layout_weight="1"
                android:layout_width="0dp" android:layout_height="40dp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                android:layout_marginStart="8dp"/>

        </LinearLayout>

    </LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

现在,如果您需要在 SeekBar 和底部按钮之间显示列表或其他控件,那么这两个需要在单个 LinearLayout 中,其中 SeekBar 容器位于第一个 child,您的列表位于第二个和底部按钮在第三个 child。或者您可以将 bottom 按钮保留在 BottomBar 上,它保持在顶部。

您可以尝试使用 ConstraintLayout 替换您的 FrameLayout,

约束条件Seekbar

  • 父级的顶部到顶部
  • 父级端到端

然后使用 LinearLayout 按住两个按钮。

然后约束 LinearLayout :

  • 父项的底部到底部
  • 从父到尾

这样做将使搜索栏保持在右上角,按钮保持在右下角。