Почему кнопка совпадает с видом в макете?

#android #layout #view

Вопрос:

Я хочу нарисовать три кнопки и изображение клавиатуры на экране. Я использую constraintlayout, чтобы нарисовать три кнопки. Однако я обнаружил, что три кнопки совпадают с видом. Интересно, как я могу их почитать. Я изменил высоту и вес кнопки, но она не работает. Интересно, нужно ли мне менять ограничение на линейное отображение. Вот код трех кнопок:

  <androidx.constraintlayout.widget.ConstraintLayout
    android:id="@ id/functional_buttons"
    android:layout_width="match_parent"
    android:layout_height="30dp">

     <androidx.constraintlayout.widget.ConstraintLayout
    android:id="@ id/Connect_buttons"
    android:layout_width="match_parent"
    android:layout_height="30dp">

    <Button
        android:id="@ id/connect"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="connect"
        android:minHeight="30dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@ id/send"/>

    <Button
        android:id="@ id/send"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:text="send"
        android:minHeight="30dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toLeftOf="@ id/receive"
        app:layout_constraintLeft_toRightOf="@ id/connect" />

    <Button
        android:id="@ id/receive"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:text="receive"
        android:minHeight="30dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toRightOf="@ id/send" />

</androidx.constraintlayout.widget.ConstraintLayout>
 

Вот код представления клавиатуры:

 <com.example.magickeyboard.View.MyKeyboardContainer
    android:id="@ id/keyboard_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:id="@ id/linear_container_1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" />

    <LinearLayout
        android:id="@ id/linear_container_2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"/>

    <LinearLayout
        android:id="@ id/linear_container_3"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"/>

    <LinearLayout
        android:id="@ id/linear_container_4"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"/>

</com.example.magickeyboard.View.MyKeyboardContainer>
 

Это макет:
введите описание изображения здесь

Комментарии:

1. Как насчет изменения родительского layout_height на 50 или больше? 30-это меньше, чем детский рост 50.

2. Большое спасибо. Ваш ответ помог мне решить мою проблему! @AIMINPAN