diff options
| -rw-r--r-- | core/res/res/drawable-mdpi/scrubber_control_holo.png | bin | 2378 -> 2763 bytes | |||
| -rw-r--r-- | core/res/res/drawable-mdpi/scrubber_primary_holo.9.png | bin | 0 -> 1074 bytes | |||
| -rw-r--r-- | core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png | bin | 0 -> 1075 bytes | |||
| -rw-r--r-- | core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png | bin | 287 -> 1116 bytes | |||
| -rw-r--r-- | core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png | bin | 291 -> 1120 bytes | |||
| -rw-r--r-- | core/res/res/drawable/scrubber_progress_horizontal_holo_dark.xml | 15 | ||||
| -rw-r--r-- | core/res/res/drawable/scrubber_progress_horizontal_holo_light.xml | 15 |
7 files changed, 18 insertions, 12 deletions
diff --git a/core/res/res/drawable-mdpi/scrubber_control_holo.png b/core/res/res/drawable-mdpi/scrubber_control_holo.png Binary files differindex 135b2aa5de65..8457833723aa 100644 --- a/core/res/res/drawable-mdpi/scrubber_control_holo.png +++ b/core/res/res/drawable-mdpi/scrubber_control_holo.png diff --git a/core/res/res/drawable-mdpi/scrubber_primary_holo.9.png b/core/res/res/drawable-mdpi/scrubber_primary_holo.9.png Binary files differnew file mode 100644 index 000000000000..8582b1327bb4 --- /dev/null +++ b/core/res/res/drawable-mdpi/scrubber_primary_holo.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png b/core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png Binary files differnew file mode 100644 index 000000000000..6ad876e555f7 --- /dev/null +++ b/core/res/res/drawable-mdpi/scrubber_secondary_holo.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png b/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png Binary files differindex 7b48cf93fa1f..baf70cd84977 100644 --- a/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/scrubber_track_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png b/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png Binary files differindex 7c84ac94d64c..6f314972f72c 100644 --- a/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png +++ b/core/res/res/drawable-mdpi/scrubber_track_holo_light.9.png diff --git a/core/res/res/drawable/scrubber_progress_horizontal_holo_dark.xml b/core/res/res/drawable/scrubber_progress_horizontal_holo_dark.xml index 90172a509307..b117bb8cbe1d 100644 --- a/core/res/res/drawable/scrubber_progress_horizontal_holo_dark.xml +++ b/core/res/res/drawable/scrubber_progress_horizontal_holo_dark.xml @@ -15,11 +15,14 @@ --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:id="@android:id/background" - android:drawable="@android:drawable/scrubber_track_holo_dark" /> - <item android:id="@android:id/secondaryProgress" - android:drawable="@android:drawable/scrubber_track_holo_dark" /> - <item android:id="@android:id/progress" - android:drawable="@android:drawable/scrubber_track_holo_dark" /> + android:drawable="@android:drawable/scrubber_track_holo_dark" /> + <item android:id="@android:id/secondaryProgress"> + <scale android:scaleWidth="100%" + android:drawable="@android:drawable/scrubber_secondary_holo" /> + </item> + <item android:id="@android:id/progress"> + <scale android:scaleWidth="100%" + android:drawable="@android:drawable/scrubber_primary_holo" /> + </item> </layer-list> diff --git a/core/res/res/drawable/scrubber_progress_horizontal_holo_light.xml b/core/res/res/drawable/scrubber_progress_horizontal_holo_light.xml index 5fc96970c935..6cd08ea0c229 100644 --- a/core/res/res/drawable/scrubber_progress_horizontal_holo_light.xml +++ b/core/res/res/drawable/scrubber_progress_horizontal_holo_light.xml @@ -15,11 +15,14 @@ --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:id="@android:id/background" - android:drawable="@android:drawable/scrubber_track_holo_light" /> - <item android:id="@android:id/secondaryProgress" - android:drawable="@android:drawable/scrubber_track_holo_light" /> - <item android:id="@android:id/progress" - android:drawable="@android:drawable/scrubber_track_holo_light" /> + android:drawable="@android:drawable/scrubber_track_holo_light" /> + <item android:id="@android:id/secondaryProgress"> + <scale android:scaleWidth="100%" + android:drawable="@android:drawable/scrubber_secondary_holo" /> + </item> + <item android:id="@android:id/progress"> + <scale android:scaleWidth="100%" + android:drawable="@android:drawable/scrubber_primary_holo" /> + </item> </layer-list> |