我的Android应用在表格中显示数据。如何显示分隔单元格的网格,以便更直观地跟踪行和列?我没有在android.widget.TableLayout类中找到与网格有关的任何选项......
迈克尔
答案 0 :(得分:2)
您应该使用背景颜色和边距,如下所示。
<TableLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:stretchColumns="*" android:background="#ff00f0">
<TableRow android:layout_margin="2dp" android:background="#000000">
<TextView android:text="first" />
<TextView android:text="second" />
<Button android:text="third" />
</TableRow>
</TableLayout>