16 lines
418 B
XML
16 lines
418 B
XML
|
|
<!-- dotted_line.xml -->
|
||
|
|
<!-- dotted_border.xml -->
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
<stroke
|
||
|
|
android:width="1dp"
|
||
|
|
android:color="#000000" />
|
||
|
|
|
||
|
|
<stroke
|
||
|
|
android:width="1dp"
|
||
|
|
android:color="#000000"
|
||
|
|
android:dashWidth="10dp"
|
||
|
|
android:dashGap="5dp" /> <!-- Adjust dash width and gap as needed -->
|
||
|
|
|
||
|
|
</shape>
|