android tableLayout列颜色问题

时间:2013-07-25 02:15:13

标签: android android-layout android-tablelayout

我想要一个具有以下属性的Tablelayout,

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>

2 个答案:

答案 0 :(得分:0)

从原始代码:

  • TableLayoutTableRow替换为LinearLayout(不需要桌子,只有一行)

  • android:padding添加TextViews以进行展开

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

答案 1 :(得分: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>