Last active
June 26, 2017 11:11
-
-
Save truongngoclinh/fd955372d406a252b588652fd961311b to your computer and use it in GitHub Desktop.
Create drawable vertical dotted line, its the bottom edge of the rectangle.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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