0

I want a gridview with empty grid lines as follows

Gridlines in Empty Cells

Here is what i got till now, gridview with gridlines in the occupied cells only. I want gridlines in empty cells also. Is this possible?

Gridline in Occupied Cells

4

2 回答 2

1

我几乎肯定 GridView 从来都不是为此而设计的,所以你有两个选择。

- 编写您自己的支持默认视图的 GridView。

或者

- 如果这不是一个实时变化的动态视图:

  1. 在您的适配器中,在 getCount 方法中设置最小值(返回 Math.max(actualSize, minimumCount))。并将没有数据的视图设置为空框。

  2. 确保计数始终为 4 的某个模数,以确保每一行都将被填充。

这就是我想出的想法,很可能有更好的方法来做到这一点,但希望我能让你朝着正确的方向前进。

于 2013-04-29T05:00:30.760 回答
0

View尝试在网格的空单元格中放置一个 empy 。例如,使用TextView不带文本的 a,或仅使用new View().

于 2013-04-29T05:15:12.133 回答