我已经浏览了所有虚线分隔线主题,但不知何故我的问题仍然存在:
我有一个垂直的线性布局,并希望在线性布局中的每个项目之间显示虚线分隔线。我使用以下形状,但仍然得到一条直线。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:color="#7b7b75"
android:dashGap="2dp"
android:dashWidth="1dp"
/>
<size android:height="1dp"/>
</shape>