两个TableLayouts并排

时间:2013-04-30 01:31:25

标签: android width android-tablelayout

是否可以并排显示两个TableLayouts(在RelativeLayout中),以便两个表具有相同的宽度?我只是不知道该怎么做。我已经尝试将android:stretchColumns="*"设置为两个表,但它只是将一个表拉伸到100%宽度,第二个表被推出屏幕。

1 个答案:

答案 0 :(得分:3)

您可能可以使用LinearLayout并将每个TableLayout权重设置为0.5

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <TableLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.5" />
    <TableLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.5" />
</LinearLayout>