Линейный макет делят не одинаковую ширину - PullRequest
0 голосов
/ 07 января 2019

Я знаю, как разделить макет на 3 или 4 равные части, но как мне таким образом разделить линейный макет (горизонтальный) на 4 части?

enter image description here Как видите, номер детали «1» в 3 раза больше деталей «3» и «4». Вместо этого номер детали «2» в 2 раза больше деталей «3» и «4».

Я пробовал вот так:

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

    <TextView
        android:id="@+id/edColore"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="4"
        android:background="@android:color/white"
        android:text="ARANCIONE" />

    <TextView
        android:id="@+id/edGiorno"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="2"
        android:background="@android:color/holo_green_light"
        android:text="Button" />

    <TextView
        android:id="@+id/edOra"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/holo_blue_light"
        android:text="Button" />

    <TextView
        android:id="@+id/edPosizione"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/holo_red_light"
        android:text="Button" />

</LinearLayout>

Но не работай так, как я хочу: enter image description here

Ответы [ 3 ]

0 голосов
/ 07 января 2019

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

<?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"
    android:weightSum="10">

    <TextView
        android:id="@+id/edColore"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="5"
        android:background="@android:color/white"
        android:text="ARANCIONE" />

    <TextView
        android:id="@+id/edGiorno"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="3"
        android:background="@android:color/holo_green_light"
        android:text="Button" />

    <TextView
        android:id="@+id/edOra"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/holo_blue_light"
        android:text="Button" />

    <TextView
        android:id="@+id/edPosizione"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/holo_red_light"
        android:text="Button" />

</LinearLayout>
0 голосов
/ 07 января 2019

Проверьте этот последний код:

<?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">

    <TextView
    android:id="@+id/edColore"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="3"
    android:background="@android:color/white"
    android:text="ARANCIONE" />

<TextView
    android:id="@+id/edGiorno"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="2"
    android:background="@android:color/holo_green_light"
    android:text="Button" />

<TextView
    android:id="@+id/edOra"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="@android:color/holo_blue_light"
    android:text="Button" />

<TextView
    android:id="@+id/edPosizione"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="@android:color/holo_red_light"
    android:text="Button" />
</LinearLayout>
0 голосов
/ 07 января 2019

Вы должны использовать android:weightSum

Определяет максимальную сумму веса. Если не указано, сумма рассчитывается добавление layout_weight всех детей. Это может быть использовано для Например, чтобы дать одному ребенку 50% от общего присваивая ему layout_weight 0,5 и устанавливая weightSum равным 1,0.

Ваш XML будет

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

        <TextView
            android:id="@+id/edColore"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="4"
            android:background="@android:color/white"
            android:text="ARANCIONE" />

        <TextView
            android:id="@+id/edGiorno"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="2"
            android:background="@android:color/holo_green_light"
            android:text="Button" />

        <TextView
            android:id="@+id/edOra"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/holo_blue_light"
            android:text="Button" />

        <TextView
            android:id="@+id/edPosizione"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/holo_red_light"
            android:text="Button" />

</LinearLayout>
...