如何在android表格布局中合并两行

将相本无种,男儿当自强。这篇文章主要讲述如何在android表格布局中合并两行相关的知识,希望能为你提供帮助。
我想知道如何在android表格布局中合并两行。我知道android:layout_span用于合并列和什么用于合并两行的属性?
答案TableLayout中没有rowspan属性。更好地使用LinearLayoutRelativeLayout。它简单得多。或者使用GridLayout for API Level> 13
如果您依赖TableLayout,您可以实现如下行排:

< TableLayout ...> < TableRow..> < !-- Column 1 : Rowspan 2 --> < TextView .../> < !-- Column 2 : 2 Rows --> < TableLayout ...> < TableRow..> < TextView .../> < /TableRow> < TableRow..> < TextView .../> < /TableRow> < /TableLayout> < /TableRow> < /TableLayout>

【如何在android表格布局中合并两行】使用LinearLayouts解决方案(便宜又简单):
< LinearLayout ... android:orientation="horizontal"> < !-- Column 1 --> < LinearLayout ... android:orientation="vertical"> < TextView .../> < /LinearLayout> < !-- Column 2 --> < LinearLayout ... android:orientation="vertical"> < TextView .../> < TextView .../> < /LinearLayout> < /LinearLayout>


    推荐阅读