android_14 线性布局2

来源:互联网 发布:山中鹿之介 数据 编辑:程序博客网 时间:2024/06/15 18:06

 

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <LinearLayout         android:layout_width="fill_parent"    android:layout_height="wrap_content"     android:orientation="horizontal"    android:layout_weight="1">       <TextView           android:layout_width="wrap_content"           android:layout_height="match_parent"           android:layout_weight="1"           android:background="#ff00ff"           android:text="aaaaaa" />       <TextView            android:layout_width="wrap_content"           android:layout_height="match_parent"           android:layout_weight="1"           android:text="bbbbb"           android:background="#ffff00"           />       <TextView            android:layout_width="wrap_content"           android:layout_height="match_parent"           android:layout_weight="1"           android:text="cccccccc"           android:background="#00ff00"           />       <TextView            android:layout_width="wrap_content"           android:layout_height="match_parent"           android:layout_weight="1"           android:text="ddddddd"           android:background="#0000ff"           />    </LinearLayout>        <LinearLayout         android:layout_width="fill_parent"    android:layout_height="fill_content"    android:orientation="vertical"    android:layout_weight="1">               <TextView            android:layout_width="wrap_content"           android:layout_height="wrap_content"           android:text="第一行"           android:layout_weight="1"           />        <TextView            android:layout_width="fill_parent"           android:layout_height="wrap_content"           android:text="第二行"           android:layout_weight="1"           />        <TextView            android:layout_width="fill_parent"           android:layout_height="wrap_content"           android:text="第三行"           android:layout_weight="1"           />        <TextView            android:layout_width="wrap_content"           android:layout_height="wrap_content"           android:text="第四行"           android:layout_weight="1"           />                            </LinearLayout>   </LinearLayout>
 


 

 

  • 大小: 7.5 KB
  • 查看图片附件
原创粉丝点击