0

因此,我通过扩展布局文件从代码创建 TableLayout。我试图让第一行跨越两列,下一行包含两个 TextView:键和值。问题是值可能很长,所以我在 TableLayout xml 中使用android:stretchColumnssettings android:shrinkColumns。现在键列和值列看起来不错,但首先,跨越,标题比屏幕尺寸更宽。

我的文件的当前情况如下所示:

tale_row.xml:

 <TableRow xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:paddingTop="5dp"
     android:paddingBottom="5dp"
     android:paddingLeft="10dp"
     android:paddingRight="10dp" >
        <TextView 
            android:id="@+id/key"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/gray"
            android:textStyle="bold"
            android:layout_marginRight="10dp" />
        <TextView 
            android:id="@+id/value"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@android:color/black" />"
 </TableRow>

header_row.xml:

<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView 
        android:id="@+id/header"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_span="2"
        style="@style/group_separator_style"
        android:layout_marginBottom="5dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp" />

</TableRow>

表.xml:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:stretchColumns="1" >
</TableLayout>

任何想法,可能是什么原因?将属性clipChildren和设置clipToPadding为 true 并没有帮助。

4

1 回答 1

0

它看起来像设置android:stretchColumns="1"android:shrinkColumns="1"解决了问题

于 2013-03-01T08:36:59.433 回答