1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
 
    <item
        android:left="-300dp"
        android:right="-300dp">
        <rotate android:fromDegrees="90">
            <shape
                android:shape="line">
                <stroke
                    android:color="@color/white"
                    android:width="1dp"
                    android:dashGap="4dp"
                    android:dashWidth="6dp" />
            </shape>
        </rotate>
    </item>
</layer-list>