带有虚线/虚线分隔符的Android gridview

时间:2015-09-21 13:00:59

标签: android android-gridview

我必须设计一个带有网格视图和虚线/点分隔符的布局。任何人都可以请让我知道我该怎么办?

这个问题可能类似于another question asked here in stackoverflow,但它有所不同,因为:

A]我需要一条虚线

B]虚线不应该触及基于question给出的答案无法完成的单元格边缘。

Grid layout with dotted/dashed separator

1 个答案:

答案 0 :(得分:1)

你可以尝试下面的代码:

抽拉/的 dotted_shape.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">

    <stroke
       android:color="#C7B299"
       android:dashWidth="15px"
       android:dashGap="15px"
       android:width="2dp"/>
</shape>

这会给你点线分隔符。谢谢。