summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable/grey_border.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/drawable/grey_border.xml')
-rw-r--r--app/src/main/res/drawable/grey_border.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/grey_border.xml b/app/src/main/res/drawable/grey_border.xml
new file mode 100644
index 000000000..4362f05b6
--- /dev/null
+++ b/app/src/main/res/drawable/grey_border.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector>
+
+ <item>
+
+ <shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <corners
+ android:radius="8dp"
+ android:topRightRadius="8dp"
+ android:bottomRightRadius="8dp"
+ android:bottomLeftRadius="8dp" />
+ <stroke
+ android:width="1dp"
+ android:color="@android:color/darker_gray" />
+ <solid android:color="@android:color/transparent"/>
+ </shape>
+
+ </item>
+
+</selector> \ No newline at end of file