表 - 没有边界崩溃

时间:2017-10-17 14:01:29

标签: android android-tablelayout

在我的布局中,我有一张桌子占据了所有的屏幕:

<TableLayout
    android:layout_with="fill_parent"
    androidlayout_height="wrap_content">

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:weightSum="1"
        android:layout_weight="0.5">
        <TextView
            ... />
        <TextView
            ... />
        <TextView
            ... />
    </TableRow>

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:weightSum="1"
        android:layout_weight="0.5">
        <TextView
            ... />
        <TextView
            ... />
        <TextView
            ... />
    </TableRow>

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:weightSum="1"
        android:layout_weight="0.5">
        <TextView
            ... />
        <TextView
            ... />
        <TextView
            ... />
    </TableRow>
</TableLayout>

在我的示例中,边框已折叠,但我希望文档的宽度和高度在边框之间有一些边距 我怎么能这样做?

0 个答案:

没有答案