Created
August 11, 2018 13:04
-
-
Save KanshuYokoo/62caf8a3812eb2d4ba0f04dd84efc6da to your computer and use it in GitHub Desktop.
android border gist
This file contains hidden or 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"?> | |
<shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
<stroke | |
android:width="5dp" | |
android:color="@android:color/holo_blue_light" /> | |
<padding | |
android:left="2dp" | |
android:top="2dp" | |
android:right="2dp" | |
android:bottom="10dp" /> | |
<solid android:color="@android:color/white"/> | |
<corners android:radius="5dp" /> | |
</shape> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment