Added Android code
[wl-app.git] / Android / app / src / main / res / drawable / seekbar_progress.xml
diff --git a/Android/app/src/main/res/drawable/seekbar_progress.xml b/Android/app/src/main/res/drawable/seekbar_progress.xml
new file mode 100644 (file)
index 0000000..6c93427
--- /dev/null
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+    <item
+        android:id="@android:id/background"
+        android:gravity="center_vertical|fill_horizontal">
+        <shape
+            android:shape="rectangle">
+            <corners android:radius="8dp"/>
+            <size android:height="3dp"/>
+            <solid android:color="@color/app_gray"/>
+        </shape>
+    </item>
+    <item
+        android:id="@android:id/progress"
+        android:gravity="center_vertical|fill_horizontal">
+        <scale android:scaleWidth="100%">
+            <shape
+                android:shape="rectangle">
+                <corners android:radius="8dp"/>
+                <size android:height="3dp"/>
+                <solid android:color="@color/turquoise"/>
+            </shape>
+        </scale>
+    </item>
+</layer-list>
\ No newline at end of file