TableLayout是一个用于显示表格数据的布局容器,它可以将子视图以表格的形式显示出来。它可以用于创建复杂的表格布局,每个单元格可以包含任意数量的子视图。
TableLayout的用法如下:
<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="*"
android:shrinkColumns="1">
<!-- 子视图 -->
</TableLayout>
<TableRow>
<!-- 子视图 -->
</TableRow>
<TableRow>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cell1" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cell2" />
</TableRow>
通过以上步骤,就可以创建一个简单的表格布局。可以根据实际需求添加更多的行和列,并设置各个单元格的属性和样式。