-1

我将如何使用 tablelayout 创建以下布局?列跨越很简单,但我没有找到任何关于行跨越的明确指导。

在此处输入图像描述

4

1 回答 1

2

您不能直接执行此操作,而是必须使用嵌套布局。在您的情况下,使用嵌套的 TableLayouts 将非常低效,因此您应该使用其他布局的组合。

尝试类似:

LinearLayout with vertical orientation (1)
  LinearLayout with a horizontal orientation (2)
    Box like view + LinearLayout with vertical orientation (3)
                      Row 1
                      LinearLayout with horizontal orientation (4)
                        The Two Views
                      Row 3
  Your other large view
  Your other other large View

这是您的布局的颜色编码版本(每种颜色都是新的父布局)

在此处输入图像描述

于 2013-04-06T18:55:37.070 回答