summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/empty_seek_bar.xml19
-rw-r--r--res/drawable/scrubber_back.xml3
-rw-r--r--res/drawable/seek_back.xml21
3 files changed, 35 insertions, 8 deletions
diff --git a/res/drawable/empty_seek_bar.xml b/res/drawable/empty_seek_bar.xml
new file mode 100644
index 000000000..e3cf61d64
--- /dev/null
+++ b/res/drawable/empty_seek_bar.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The CyanogenMod Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+ <solid android:color="#00000000"/>
+</shape> \ No newline at end of file
diff --git a/res/drawable/scrubber_back.xml b/res/drawable/scrubber_back.xml
index 56cf5af73..c5022dec5 100644
--- a/res/drawable/scrubber_back.xml
+++ b/res/drawable/scrubber_back.xml
@@ -15,6 +15,5 @@
limitations under the License.
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
- <solid android:color="#99333333"/>
- <corners android:radius="5dip"/>
+ <solid android:color="@color/scrubber_background"/>
</shape>
diff --git a/res/drawable/seek_back.xml b/res/drawable/seek_back.xml
index a49796c05..d97a870ea 100644
--- a/res/drawable/seek_back.xml
+++ b/res/drawable/seek_back.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2014 The CyanogenMod Project
+ Copyright (C) 2015 The CyanogenMod Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -14,8 +14,17 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="line">
- <stroke android:width="4dp" android:color="#FFF"/>
- <size android:height="2dp" />
-</shape>
+
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="360dp"
+ android:height="48dp"
+ android:viewportWidth="360"
+ android:viewportHeight="48">
+
+ <path
+ android:strokeColor="#FFFFFF"
+ android:strokeWidth="2"
+ android:strokeMiterLimit="10"
+ android:strokeLineCap="round"
+ android:pathData="M16,24h328" />
+</vector> \ No newline at end of file