我想通过编程方式填充一个在布局 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>