要在Android中使用TableLayout动态添加行,首先需要在XML布局文件中定义一个TableLayout并为其提供一个唯一的ID。然后在Java代码中,通过findViewById()方法获取TableLayout的引用,并使用addView()方法动态添加TableRow对象。
下面是一个简单的示例代码:
<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TableLayout>
TableLayout tableLayout = findViewById(R.id.tableLayout);
// 创建一个新的TableRow对象
TableRow tableRow = new TableRow(this);
tableRow.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.WRAP_CONTENT));
// 创建并添加TextView到TableRow中
TextView textView = new TextView(this);
textView.setText("动态添加的行");
tableRow.addView(textView);
// 将TableRow添加到TableLayout中
tableLayout.addView(tableRow);
通过以上代码,我们成功地在TableLayout中动态添加了一行包含一个TextView的内容。您可以根据需要自定义TableRow和其中的子View,实现更加复杂的布局。