我必须设计一个带有网格视图和虚线/点分隔符的布局。任何人都可以请让我知道我该怎么办?
这个问题可能类似于another question asked here in stackoverflow,但它有所不同,因为:
A]我需要一条虚线
B]虚线不应该触及基于question给出的答案无法完成的单元格边缘。
答案 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>
这会给你点线分隔符。谢谢。