是否有可能在Android UI中有两个表格布局

时间:2011-10-27 12:08:56

标签: android android-layout tablelayout

我需要在一个UI中显示两个不同的表,我尝试了表格布局,因为通过表格布局很容易拥有表格结构。但我不能在一个屏幕上有两个表格布局。我试图在父布局中添加表格布局视图,例如相对或线性布局,它不起作用。然后我尝试将表添加为父表布局中的行,但没有任何工作。在给视图膨胀时它没有显示任何错误或警告,但它只显示最后一个表格布局。在一个屏幕中是否不可能有两个表格布局。

1 个答案:

答案 0 :(得分:3)

TableLayouts中的两个LinearLayout换行,并在android:layout_weight上定义TableLayouts

<?xml version="1.0" encoding="utf-8"?>

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

<TableLayout
    android:id="@+id/tableLayout1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="#ff0000" >     
</TableLayout>

<TableLayout
    android:id="@+id/tableLayout2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="#00ff00"  >     
</TableLayout>