summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-12-20 01:52:22 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-12-20 01:52:22 +0100
commitab6effe9e2fb7fab1f310689ca5ae3ae7b7099ca (patch)
tree8b22d6a2092a4c637eba3f96e66399fb4ec8b264 /app/src/main/res/drawable
parent47b7eab07140dd20710e84b47b43da1de8123fb4 (diff)
downloadwallet-android-ab6effe9e2fb7fab1f310689ca5ae3ae7b7099ca.tar.gz
wallet-android-ab6effe9e2fb7fab1f310689ca5ae3ae7b7099ca.tar.bz2
wallet-android-ab6effe9e2fb7fab1f310689ca5ae3ae7b7099ca.zip
UI tweaks in progress
Diffstat (limited to 'app/src/main/res/drawable')
-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