diff --git a/packages/SystemUI/res/drawable-hdpi/scrubber_control_disabled_holo.png b/packages/SystemUI/res/drawable-hdpi/scrubber_control_disabled_holo.png deleted file mode 100644 index 55f6aa1568f1d..0000000000000 Binary files a/packages/SystemUI/res/drawable-hdpi/scrubber_control_disabled_holo.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-hdpi/scrubber_control_holo.png b/packages/SystemUI/res/drawable-hdpi/scrubber_control_holo.png deleted file mode 100644 index 19dae07aa688d..0000000000000 Binary files a/packages/SystemUI/res/drawable-hdpi/scrubber_control_holo.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-hdpi/scrubber_track_holo_dark.9.png b/packages/SystemUI/res/drawable-hdpi/scrubber_track_holo_dark.9.png deleted file mode 100644 index 8811df5d0ade2..0000000000000 Binary files a/packages/SystemUI/res/drawable-hdpi/scrubber_track_holo_dark.9.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-mdpi/scrubber_control_disabled_holo.png b/packages/SystemUI/res/drawable-mdpi/scrubber_control_disabled_holo.png deleted file mode 100644 index 2b8768b45d28a..0000000000000 Binary files a/packages/SystemUI/res/drawable-mdpi/scrubber_control_disabled_holo.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-mdpi/scrubber_control_holo.png b/packages/SystemUI/res/drawable-mdpi/scrubber_control_holo.png deleted file mode 100644 index 0672564c744ca..0000000000000 Binary files a/packages/SystemUI/res/drawable-mdpi/scrubber_control_holo.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-mdpi/scrubber_track_holo_dark.9.png b/packages/SystemUI/res/drawable-mdpi/scrubber_track_holo_dark.9.png deleted file mode 100644 index 511d5c3efc9bf..0000000000000 Binary files a/packages/SystemUI/res/drawable-mdpi/scrubber_track_holo_dark.9.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-xhdpi/scrubber_control_disabled_holo.png b/packages/SystemUI/res/drawable-xhdpi/scrubber_control_disabled_holo.png deleted file mode 100644 index 551c6dc0ef543..0000000000000 Binary files a/packages/SystemUI/res/drawable-xhdpi/scrubber_control_disabled_holo.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-xhdpi/scrubber_control_holo.png b/packages/SystemUI/res/drawable-xhdpi/scrubber_control_holo.png deleted file mode 100644 index 11f9c5127c108..0000000000000 Binary files a/packages/SystemUI/res/drawable-xhdpi/scrubber_control_holo.png and /dev/null differ diff --git a/packages/SystemUI/res/drawable-xhdpi/scrubber_track_holo_dark.9.png b/packages/SystemUI/res/drawable-xhdpi/scrubber_track_holo_dark.9.png deleted file mode 100644 index b28dddf388632..0000000000000 Binary files a/packages/SystemUI/res/drawable-xhdpi/scrubber_track_holo_dark.9.png and /dev/null differ diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/policy/ToggleSlider.java b/packages/SystemUI/src/com/android/systemui/statusbar/policy/ToggleSlider.java index 0eb2be6f1b1bb..fe2ec69bcaf34 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/policy/ToggleSlider.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/policy/ToggleSlider.java @@ -80,10 +80,13 @@ public class ToggleSlider extends RelativeLayout Drawable slider; final Resources res = getContext().getResources(); if (checked) { - thumb = res.getDrawable(R.drawable.scrubber_control_disabled_holo); - slider = res.getDrawable(R.drawable.status_bar_settings_slider_disabled); + thumb = res.getDrawable( + com.android.internal.R.drawable.scrubber_control_disabled_holo); + slider = res.getDrawable( + R.drawable.status_bar_settings_slider_disabled); } else { - thumb = res.getDrawable(R.drawable.scrubber_control_holo); + thumb = res.getDrawable( + com.android.internal.R.drawable.scrubber_control_selector_holo); slider = res.getDrawable( com.android.internal.R.drawable.scrubber_progress_horizontal_holo_dark); }