无法访问tablelayout中的属性layout_span

时间:2013-11-15 23:54:10

标签: android android-layout

我使用eclipse与java 1.6和android 3.2 sdk 在第一行的textview中,我试图使用layout_span,但它不在那里 什么可能导致这样的问题

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

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

        <TextView
            android:layout_width="0dp"
            android:layout_weight="1"/>
        <TextView
            android:layout_width="0dp"
            android:layout_weight="1"/>
    </TableRow>

</TableLayout>

0 个答案:

没有答案