首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android_14 线性格局2

2012-09-07 
android_14 线性布局2??xml version1.0 encodingutf-8?LinearLayout xmlns:androidhttp://sche

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

?

?

热点排行