Android布局

1、对于这个案例来说:

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

    android:orientation="vertical" 

    android:weightSum="18">

   

    <LinearLayout                                       //分谁谁为0

        android:layout_width="fill_parent"

        android:layout_height="0dp"

        android:layout_weight="9"                       //分完之后所占的权重

        android:orientation="horizontal"

        android:weightSum="6.8">

        <LinearLayout 

            android:layout_width="0dp"

            android:layout_height="fill_parent"

            android:layout_weight="3.4">

            <TextView 

                android:layout_width="fill_parent"

                android:layout_height="fill_parent"

                android:text="1"

                android:gravity="center"/>

        </LinearLayout>

        <View  

        android:layout_width="0.1dp"            //分割线宽度为0.1,高度为满格

        android:layout_height="fill_parent"

        android:background="#000000"/>

        <LinearLayout 

            android:layout_width="0dp"

            android:layout_height="match_parent"

            android:layout_weight="3.4"

            android:orientation="vertical">

            <LinearLayout

                android:layout_width="fill_parent"

                android:layout_height="0dp"

                android:layout_weight="4.5"

                android:orientation="horizontal">

                <LinearLayout

                    android:layout_width="0dp"

                    android:layout_height="fill_parent"

                    android:layout_weight="1.7"

                    android:background="#E9786D">    

                </LinearLayout>

                <View 

        android:layout_width="0.1dp"

        android:layout_height="fill_parent"

        android:background="#000000"/>

                <LinearLayout

                    android:layout_width="0dp"

                    android:layout_height="fill_parent"

                    android:layout_weight="1.7"

                    android:background="#0475CC">    

                </LinearLayout>

            </LinearLayout>

            <View 

        android:layout_width="fill_parent"

        android:layout_height="0.1dp"

        android:background="#000000"/>

            <LinearLayout

                android:layout_width="fill_parent"

                android:layout_height="0dp"

                android:layout_weight="4.5"

                android:orientation="horizontal">

              <LinearLayout

                    android:layout_width="0dp"

                    android:layout_height="fill_parent"

                    android:layout_weight="1.7"

                    android:background="#3A951C">    

                </LinearLayout>

                 <View 

        android:layout_width="0.1dp"

        android:layout_height="fill_parent"

        android:background="#000000"/>

                <LinearLayout

                    android:layout_width="0dp"

                    android:layout_height="fill_parent"

                    android:layout_weight="1.7"

                    android:background="#8F7A15">    

                </LinearLayout

            </LinearLayout>

            

        </LinearLayout>

    </LinearLayout>

    <View 

        android:layout_width="fill_parent"

        android:layout_height="0.1dp"

        android:background="#000000"/>

    <LinearLayout 

        android:layout_width="fill_parent"

        android:layout_height="0dp"

        android:layout_weight="9"

        android:orientation="horizontal"

        android:weightSum="6.8">

        <LinearLayout 

            android:layout_width="0dp"

            android:layout_height="fill_parent"

            android:layout_weight="3.4">

            

        </LinearLayout>

        <View 

        android:layout_width="0.1dp"

        android:layout_height="fill_parent"

        android:background="#000000"/>

        <LinearLayout 

            android:layout_width="0dp"

            android:layout_height="fill_parent"

            android:layout_weight="3.4">

            

        </LinearLayout>

    </LinearLayout>


</LinearLayout>


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。