16 lines
483 B
XML
16 lines
483 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<!-- Background Rectangle -->
|
||
|
|
<item>
|
||
|
|
<shape android:shape="rectangle">
|
||
|
|
<solid android:color="@android:color/transparent" />
|
||
|
|
<stroke
|
||
|
|
android:width="2dp"
|
||
|
|
android:color="#3266D0"
|
||
|
|
android:dashWidth="4dp"
|
||
|
|
android:dashGap="4dp"
|
||
|
|
/>
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
</layer-list>
|