1

我想通过编程方式填充一个在布局 xml 文件中定义的表。我已经定义了表,其中一行定义了它的标题,并设置了所有属性。现在我想知道一种方法,以便我可以用新内容复制表中的标题行。

我尝试使用 inflator inflate(int,view) 方法,但在运行时出现错误。

这是定义表格的布局文件的 XML 代码

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:stretchColumns="0,1,2"
 android:id="@+id/tLayout"
 > 
 <TableRow
  android:layout_width="fill_parent"
  android:id="@+id/tRow">
  <TextView
   android:id="@+id/name"
   android:padding="3dip"
   android:gravity="left"
   android:text="Name"
   />
  <TextView
   android:id="@+id/address"
   android:padding="3dip"
   android:gravity="left"
   android:text="Address"
   />
  <TextView
   android:id="@+id/age"
   android:padding="3dip"
   android:gravity="left"
   android:text="Age"
   />
 </TableRow>
</TableLayout>
4

1 回答 1

1

步骤#1:将该行拉出到单独的布局文件中

步骤#2:当你需要一行时,扩充那个布局文件

步骤#3:调用添加膨胀addView()TableLayout

于 2010-02-28T11:52:45.090 回答