在《【Android】利用相对布局布置更新软件的style为主题对话框的Activity,利用layout_weight属性对表格布局的行划分》(点击打开链接)一文中介绍过如何在安卓的Activity中进行百分比布局。
本来,在安卓的res\layout相关的xml布局文件进行百分比布局很简单的,比如如下代码则完成两个Button在一个父LinearLayout中进行7:3划分的横向并排的布局。
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="7" android:text="left" /> <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="3" android:text="right" /> </LinearLayout>
然而,正当我想进行如下的布局的时候,问题来了:
如上图,是在一个大大的、横向覆盖整个Activity的、纵横包裹内容的LinearLayout中,先进行一次2:1并排划分,之后再于2这边的LinearLayout中,放两个占据整行的LinearLayout,在上面的进行1:1:1的划分,在下面的进行1:1的划分,至于右边的LinearLayout,直接放一个横向、纵向皆占据父布局的Button。
本来代码是如此简单的,就是嵌套的LinearLayout比较多而已,正如html中div再嵌套div一样:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:baselineAligned="false" > <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="2" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> </LinearLayout> </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" > <Button android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:text="sss" /> </LinearLayout> </LinearLayout> </LinearLayout>
如果LinearLayout被用于嵌套的layout空间计算,它的android:baselineAligned属性应该设置成false,以加速layout计算。
此时,其实只要把这两个LinearLayout改成TableLayout则能够完成任务了,代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:baselineAligned="false" > <TableLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="2" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> <Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="sss" /> </LinearLayout> </TableLayout> <TableLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" > <Button android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:text="sss" /> </TableLayout> </LinearLayout> </LinearLayout>
不这样改,它老是给你报:
Wrong orientation? No orientation specified, and the default is horizontal, yet this layout has multiple children where at least one has layout_width="match_parent"
这样的错,单看这样的错误你也不知道怎么改。