TableLayout中的Equal TextView

时间:2013-05-08 08:12:50

标签: android android-layout android-tablelayout

我想在我的应用程序中创建来自ala tiles metro的统计信息。不幸的是,TextView的宽度不等,因为它解决了?

This is my layout

1 个答案:

答案 0 :(得分:0)

使用android:weightSum和android:layout_weight

<TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:weightSum="4" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginRight="1dp"
            android:layout_weight="2"
            android:background="#B0B0B0" />

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginRight="1dp"
            android:layout_weight="2"
            android:background="#B0B0B0" />

    </TableRow>

</TableLayout>