扩展视图以使其父布局与动态内容相匹配

时间:2018-01-08 15:43:42

标签: android xml android-xml

我正在研究一个复杂的布局结构,如下图所示。蓝色布局/视图需要扩展,因为红色布局的数量会像第二个图像一样垂直增加。是的紫色布局高度应该是包装内容(不应该与父母匹配)根据要求。 当我将BLUE布局设置为匹配父级时出现问题,它占据了整个屏幕的高度。

enter image description here

RED布局动态增加后:

enter image description here

1 个答案:

答案 0 :(得分:0)

Output

这是 drawable / circle_red xml文件

 <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item>
            <shape android:shape="oval">
                <solid android:color="#f1ce2a2a" />
                <corners android:radius="2dp" />
            </shape>
        </item>

    </layer-list>

主布局xml文件看看

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

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

            <LinearLayout
                android:id="@+id/home"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="#4f56be"
                android:orientation="vertical"
                android:padding="5dp">
            </LinearLayout>
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:orientation="vertical">
                <TextView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_gravity="center"
                    android:background="@drawable/circle_red"
                    android:gravity="center"
                    android:textColor="#fff"
                    android:layout_margin="5dp"
                    />
                <TextView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_gravity="center"
                    android:background="@drawable/circle_red"
                    android:gravity="center"
                    android:textColor="#fff"
                    android:layout_margin="5dp"
                    />
                <TextView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_gravity="center"
                    android:background="@drawable/circle_red"
                    android:gravity="center"
                    android:textColor="#fff"
                    android:layout_margin="5dp"
                    />
                <TextView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_gravity="center"
                    android:background="@drawable/circle_red"
                    android:gravity="center"
                    android:textColor="#fff"
                    android:layout_margin="5dp"/>
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>