summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable/pending_border.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/drawable/pending_border.xml')
-rw-r--r--app/src/main/res/drawable/pending_border.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/pending_border.xml b/app/src/main/res/drawable/pending_border.xml
new file mode 100644
index 0000000..d003891
--- /dev/null
+++ b/app/src/main/res/drawable/pending_border.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+
+ <!-- View background color -->
+ <solid
+ android:color="@android:color/transparent" >
+ </solid>
+
+ <!-- View border color and width -->
+ <stroke
+ android:width="1dp"
+ android:color="@color/colorPrimary" >
+ </stroke>
+
+ <!-- The radius makes the corners rounded -->
+ <corners
+ android:radius="2dp" >
+ </corners>
+
+</shape> \ No newline at end of file