android_04_线性布局

来源:互联网 发布:透明计算造假 知乎 编辑:程序博客网 时间:2024/06/05 20:36

演示效果:






布局文件:



<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context="com.xsism.linearlayout.MainActivity"    android:orientation="vertical"     >    <LinearLayout         android:layout_weight="1"        android:layout_height="0dp"        android:layout_width="match_parent"        android:orientation="horizontal"        >                <TextView            android:layout_height="match_parent"            android:layout_width="0dp"            android:layout_weight="1"            android:background="#ff0000"                         />        <TextView            android:layout_height="match_parent"            android:layout_width="0dp"            android:layout_weight="1"            android:background="#00ff00"                         />        <TextView            android:layout_height="match_parent"            android:layout_width="0dp"            android:layout_weight="1"            android:background="#0000ff"                         />        <TextView            android:layout_height="match_parent"            android:layout_width="0dp"            android:layout_weight="1"            android:background="@android:color/black"                         />            </LinearLayout>        <LinearLayout         android:layout_weight="1"        android:layout_height="0dp"        android:layout_width="match_parent"        android:orientation="vertical"        >                <TextView            android:layout_weight="1"            android:layout_width="match_parent"             android:layout_height="0dp"            android:background="#ff0000"            />        <TextView            android:layout_weight="1"            android:layout_width="match_parent"             android:layout_height="0dp"            android:background="#00ff00"            />            <TextView            android:layout_weight="1"            android:layout_width="match_parent"             android:layout_height="0dp"            android:background="#0000ff"            />            <TextView            android:layout_weight="1"            android:layout_width="match_parent"             android:layout_height="0dp"            android:background="#000000"            />            </LinearLayout>        </LinearLayout>





0 0
原创粉丝点击