读书人

android_14 线性格局2

发布时间: 2012-09-07 10:38:15 作者: rapoo

android_14 线性布局2

?

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


android_14 线性格局2

?

?

读书人网 >Android

热点推荐