1

我正在尝试实现我认为相当简单的片段布局,但我遇到了一些问题。任何人都可以粗略地为以下布局建议 XML 解决方案(我知道现在支持嵌套片段,但如果可能的话,我想避免这种情况):

"=============================="
| 111111111111111111 | 333333333 |
| 111111111111111111 | 333333333 |
| 111111111111111111 | 333333333 |
| 111111111111111111 | 333333333 |
| 111111111111111111 | 333333333 |
| 111111111111111111 | 333333333 |
| ===================| 333333333 |
| 222222222222222222 | 333333333 |
| 222222222222222222 | 333333333 |
"==============================

4

1 回答 1

1

这确实是一个简单的布局。

这是你想要的?

在此处输入图像描述

代码如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical" >

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#ff0000" >
        </FrameLayout>

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="2"
            android:background="#00ff00" >
        </FrameLayout>
    </LinearLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="2"
        android:background="#0000ff" >
    </FrameLayout>

</LinearLayout>
于 2013-01-27T14:48:51.817 回答