Skip to content

Instantly share code, notes, and snippets.

@truongngoclinh
Last active June 26, 2017 11:11
Show Gist options
  • Save truongngoclinh/fd955372d406a252b588652fd961311b to your computer and use it in GitHub Desktop.
Save truongngoclinh/fd955372d406a252b588652fd961311b to your computer and use it in GitHub Desktop.
Create drawable vertical dotted line, its the bottom edge of the rectangle.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:top="-2.5dp"
android:bottom="-2dp"
android:right="-2dp">
<shape>
<solid android:color="@android:color/transparent"/>
<stroke
android:width="2dp"
android:color="@color/blue"
android:dashGap="4dp"
android:dashWidth="2dp"/>
</shape>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment