0

次のプロパティを持つテーブルレイアウトが必要です。

1.列の背景色を変更したい。TextView の背景を設定している場合、コンテンツをラップし、列全体ではなくその色を配置しています。2 つの列に異なる色が必要です。
2. 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

元のコードから:

  • TableLayoutandTableRowを次のように置き換えLinearLayoutます (表は必要ありません。行は 1 つだけです)

  • 間隔を空けるために a を追加android:paddingしますTextViews

  • 削除android:layout_gravity="right"して両方android:layout_gravity="left"に追加android:layout_weight="1"TextViews

于 2013-07-25T03:21:54.300 に答える