Высота линейной выкладки в android студия - PullRequest
1 голос
/ 21 января 2020

У меня проблема с линейными раскладками. В горизонтальных родительских элементах есть две линейные вертикали, первая не имеет одинаковую высоту второй.

Есть мой LinearLayout:

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


    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:background="@android:color/darker_gray">
        <TextView
            android:id="@+id/nomPers"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Nom User"
            android:textColor="@android:color/black"
            android:textAppearance="?android:attr/textAppearanceMedium"/>

        <TextView
            android:id="@+id/dateVisite"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:lines="1"
            android:ellipsize="end"
            android:text="Date"
            android:textColor="@android:color/black"
            android:textAppearance="?android:attr/textAppearanceMedium"/>
    </LinearLayout>

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


        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:text="Type de visite"
            android:id="@+id/typeVisteCli"
            android:textColor="@android:color/black"
            android:layout_marginLeft="5dp"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:id="@+id/tv_list_obs_visite_cli"
            android:text="obs"
            android:textColor="@android:color/black"
            android:layout_marginLeft="5dp"/>


    </LinearLayout>


</LinearLayout>

И экран того, что у меня есть:

enter image description here

Вы Можно видеть, что серый не заполнить весь linearLayout. Спасибо.


РЕДАКТИРОВАТЬ

Мне очень жаль, что я неправильно указал LinearLayout ...

Ответы [ 3 ]

1 голос
/ 21 января 2020

Попробуйте это. Я изменяю ваш код.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="@android:color/darker_gray">
            <TextView
                android:id="@+id/date_ti_cli"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:lines="1"
                android:ellipsize="end"
                android:text="Date"
                android:textColor="@android:color/black"
                android:textAppearance="?android:attr/textAppearanceMedium"/>
            <TextView
                android:id="@+id/nomPers_ti_cli"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:text="Nom User"
                android:textColor="@android:color/black"
                android:textAppearance="?android:attr/textAppearanceMedium"/>

        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Observation"
                android:textColor="@android:color/black"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:layout_marginLeft="5dp"
                android:id="@+id/tv_list_obs_ti_cli"/>

        </LinearLayout>

</LinearLayout>
1 голос
/ 21 января 2020

Попробуйте это:

<LinearLayout android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    xmlns:android="http://schemas.android.com/apk/res/android">


    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@android:color/darker_gray">
        <TextView
            android:id="@+id/nomPers"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Nom User"
            android:textColor="@android:color/black"
            android:textAppearance="?android:attr/textAppearanceMedium"/>

        <TextView
            android:id="@+id/dateVisite"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:lines="1"
            android:ellipsize="end"
            android:text="Date"
            android:textColor="@android:color/black"
            android:textAppearance="?android:attr/textAppearanceMedium"/>
    </LinearLayout>

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


        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:text="Type de visite"
            android:id="@+id/typeVisteCli"
            android:textColor="@android:color/black"
            android:layout_marginLeft="5dp"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:id="@+id/tv_list_obs_visite_cli"
            android:text="obs"
            android:textColor="@android:color/black"
            android:layout_marginLeft="5dp"/>


    </LinearLayout>


</LinearLayout>
1 голос
/ 21 января 2020

Вы написали wrap_content в секунду высоту линейного макета. Вы должны изменить его с помощью match_parent.

...