Created
April 11, 2018 10:08
-
-
Save nesterchung/724947e05745f27cd7d26a0704096071 to your computer and use it in GitHub Desktop.
QRCode Scanner Background Drawable
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"?> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item | |
android:width="260dp" | |
android:height="260dp"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/transparent" /> | |
</shape> | |
</item> | |
<item | |
android:width="20dp" | |
android:height="3dp"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
<item | |
android:width="3dp" | |
android:height="20dp"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
<item | |
android:width="20dp" | |
android:height="3dp" | |
android:gravity="right"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
<item | |
android:width="3dp" | |
android:height="20dp" | |
android:gravity="right"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
<item | |
android:width="20dp" | |
android:height="3dp" | |
android:gravity="bottom"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
<item | |
android:width="3dp" | |
android:height="20dp" | |
android:gravity="bottom"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
<item | |
android:width="20dp" | |
android:height="3dp" | |
android:gravity="bottom|right"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
<item | |
android:width="3dp" | |
android:height="20dp" | |
android:gravity="bottom|right"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black" /> | |
</shape> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment