summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable
diff options
context:
space:
mode:
authorueen <ueli.sarnighausen@online.de>2021-05-14 21:06:04 +0200
committerGitHub <noreply@github.com>2021-05-14 21:06:04 +0200
commit292c9bf15136f76fea8928ed7abb2b55fb316678 (patch)
tree144f3969825b2b910e6bc0640325942bb8ed969e /app/src/main/res/drawable
parentfb6bd0cbaa909b6067fedef1e8a108130841f3fe (diff)
downloadAntennaPod-292c9bf15136f76fea8928ed7abb2b55fb316678.zip
New media player screen (#5075)
Co-authored-by: jonasburian <jonas.burian@protonmail.com> Co-authored-by: ByteHamster <info@bytehamster.com>
Diffstat (limited to 'app/src/main/res/drawable')
-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