0

我想要一个具有以下属性的表格布局,

1.我想改变列的背景颜色。现在,如果我为 TextView 设置背景,它会包装内容并将该颜色而不是整个列。我希望我的两列使用不同的颜色。
2.改变两列之间的空间(可能是边界)。
任何人都做过这样的事情请帮助我。谢谢

<TableLayout

    android:layout_gravity="center"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dip"
    android:layout_margin="2dip"
    android:orientation="vertical" >

    <TableRow
        android:padding="3dip"
        android:id="@+id/tableRow1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dip">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:text="@string/NameLabel"
            android:textColor="@color/black"
            android:textSize="20sp"
            android:background="#1DA43F"/>

        <TextView
            android:layout_marginLeft="5dip"
            android:id="@+id/NameText"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:textAlignment="center"
            android:layout_gravity="left"
            android:text="@string/NameLabel"
            android:background="@color/DarkRed"
            android:textSize="20sp"/>
              </TableRow></TableLayout>
4

2 回答 2

0
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/NameText"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@color/DarkRed"
            android:text="@string/NameLabel"
            android:gravity="center"
            android:layout_marginRight="5dp"
            android:textSize="20sp" />        

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="#1DA43F"
            android:text="@string/NameLabel"
            android:gravity="center"
            android:textColor="@color/black"
            android:layout_marginLeft="5dp"
            android:textSize="20sp" />

    </TableRow>

</TableLayout>
于 2013-07-25T16:01:29.300 回答
0

从您的原始代码:

  • 替换TableLayoutTableRowLinearLayout不需要表格,你只有一行)

  • 添加一个android:padding到你TextViews的间距

  • 删除android:layout_gravity="right"android:layout_gravity="left"添加android:layout_weight="1"到两者TextViews

于 2013-07-25T03:21:54.300 回答