概述

  我在进行LinearLayout和TableLayout的嵌套布局的时候,发生题的错误.如下布局xml代码:

 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2     android:layout_width="fill_parent" 3     android:layout_height="fill_parent" 4     android:orientation="vertical" > 5  6     <LinearLayout 7         android:layout_width="fill_parent" 8         android:layout_height="fill_parent" 9         android:layout_weight="1"10         android:orientation="horizontal" >11 12         <TextView13             android:layout_width="wrap_content"14             android:layout_height="fill_parent"15             android:layout_weight="1"16             android:background="#996699"17             android:gravity="center"18             android:text="one" />19 20         <TextView21             android:layout_width="wrap_content"22             android:layout_height="fill_parent"23             android:layout_weight="1"24             android:background="#FFFF99"25             android:gravity="center"26             android:text="two" />27 28         <TextView29             android:layout_width="wrap_content"30             android:layout_height="fill_parent"31             android:layout_weight="1"32             android:background="#CC9966"33             android:gravity="center"34             android:text="three" />35 36         <TextView37             android:layout_width="wrap_content"38             android:layout_height="fill_parent"39             android:layout_weight="1"40             android:background="#CCCC99"41             android:gravity="center"42             android:text="four" />43     </LinearLayout>44 45     <LinearLayout46         android:layout_width="fill_parent"47         android:layout_height="fill_parent"48         android:layout_weight="1"49         android:orientation="vertical" >50 51         <TableLayout>52 53             <TableRow>54 55                 <TextView56                     android:layout_width="fill_parent"57                     android:layout_height="wrap_content"58                     android:layout_weight="1"59                     android:background="#993333"60                     android:gravity="center"61                     android:text="five" />62 63                 <TextView64                     android:layout_width="fill_parent"65                     android:layout_height="wrap_content"66                     android:layout_weight="1"67                     android:background="#CCCCCC"68                     android:gravity="center"69                     android:text="six" />70             </TableRow>71 72             <TableRow>73 74                 <TextView75                     android:layout_width="fill_parent"76                     android:layout_height="wrap_content"77                     android:layout_weight="1"78                     android:background="#FFFF99"79                     android:gravity="center"80                     android:text="seven" />81             </TableRow>82         </TableLayout>83     </LinearLayout>84 85 </LinearLayout>
View Code

  其中,应该在第51行中,TableLayout加上'layout_width'和'layout_height'属性.即可.如下(第46/47行):

 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2     android:layout_width="fill_parent" 3     android:layout_height="fill_parent" 4     android:orientation="vertical" > 5  6     <LinearLayout 7         android:layout_width="fill_parent" 8         android:layout_height="fill_parent" 9         android:layout_weight="1"10         android:orientation="horizontal" >11 12         <TextView13             android:layout_width="wrap_content"14             android:layout_height="fill_parent"15             android:layout_weight="1"16             android:background="#996699"17             android:gravity="center"18             android:text="one" />19 20         <TextView21             android:layout_width="wrap_content"22             android:layout_height="fill_parent"23             android:layout_weight="1"24             android:background="#FFFF99"25             android:gravity="center"26             android:text="two" />27 28         <TextView29             android:layout_width="wrap_content"30             android:layout_height="fill_parent"31             android:layout_weight="1"32             android:background="#CC9966"33             android:gravity="center"34             android:text="three" />35 36         <TextView37             android:layout_width="wrap_content"38             android:layout_height="fill_parent"39             android:layout_weight="1"40             android:background="#CCCC99"41             android:gravity="center"42             android:text="four" />43     </LinearLayout>44 45     <LinearLayout46         android:layout_width="fill_parent"47         android:layout_height="fill_parent"48         android:layout_weight="1"49         android:orientation="vertical" >50 51         <TableLayout52             android:layout_width="fill_parent"53             android:layout_height="fill_parent" >54 55             <TableRow>56 57                 <TextView58                     android:layout_width="fill_parent"59                     android:layout_height="wrap_content"60                     android:layout_weight="1"61                     android:background="#993333"62                     android:gravity="center"63                     android:text="five" />64 65                 <TextView66                     android:layout_width="fill_parent"67                     android:layout_height="wrap_content"68                     android:layout_weight="1"69                     android:background="#CCCCCC"70                     android:gravity="center"71                     android:text="six" />72             </TableRow>73 74             <TableRow>75 76                 <TextView77                     android:layout_width="fill_parent"78                     android:layout_height="wrap_content"79                     android:layout_weight="1"80                     android:background="#FFFF99"81                     android:gravity="center"82                     android:text="seven" />83             </TableRow>84         </TableLayout>85     </LinearLayout>86 87 </LinearLayout>
View Code

更多相关文章

  1. TabHost布局及新浪式TabHost布局
  2. 请介绍下Android中常用的五种布局
  3. 边缘图片android布局属性详解
  4. androidUI设计之旅 ----布局文件属性解析
  5. android开发4:布局管理器1(线性布局,相对布局RelativeLayout-案例)
  6. 线性布局LinearLayout和相对布局RelativeLayout 之间的比较

随机推荐

  1. Android自学笔记:应用程序组件
  2. Android上调用google map api v2
  3. android adb 通过adb连接制定设备
  4. android之app widget(一)
  5. android aidl
  6. Android(安卓)Studio:Fetching android s
  7. 【转】Launcher研究之AndroidManifest.xm
  8. Android初始化语言 (init.*.rc、init.con
  9. Android中关于ComponentName的使用
  10. android 命令大全