可以显示一个表的网格吗?

时间:2010-09-07 06:33:29

标签: android

我的Android应用在表格中显示数据。如何显示分隔单元格的网格,以便更直观地跟踪行和列?我没有在android.widget.TableLayout类中找到与网格有关的任何选项......

迈克尔

1 个答案:

答案 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>