0

现在我正在使用 android 中的多列列表视图。

我的需要是在 android 中的多列列表视图的列之间绘制一条垂直线。这意味着我试图将这个多列列表视图显示为像网格视图一样。下面的图片会让你清楚我的疑惑,请找到它

在此处输入图像描述

如何实现这个概念。建议?

提前致谢!..

4

2 回答 2

2
<View
    android:id="@+id/view1"
    android:layout_width="fill_parent"
    android:layout_height="2dip"
    android:layout_below="@+id/te1"
    android:background="#F0FFFF" />

并检查此链接 http://thiranjith.com/2010/02/19/how-to-display-border-lines-with-tablelayouts/

http://mobileorchard.com/android-app-development-%E2%80%93-layouts-part-two-table-and-absolute-layouts/

于 2012-09-10T07:26:42.883 回答
0

我认为要连续显示数据,请使用 textview 。

所以把 View 放在每个 textview 之间。

<View
     android:layout_width="5dp"
     android:layout_height="fill_parent"
     android:background="#ababab" />

所以它显示谎言。

Dev | 000000000000000000 | Chennai
PSl | 000000000000000000 | Mumbai
于 2012-09-10T07:28:48.180 回答