Android – styling seek bar

I would extract drawables and xml from Android source code and change its color to red. Here is example how I completed this for mdpi drawables: Custom red_scrubber_control.xml (add to res/drawable): <selector xmlns:android=”http://schemas.android.com/apk/res/android”> <item android:drawable=”@drawable/red_scrubber_control_disabled_holo” android:state_enabled=”false”/> <item android:drawable=”@drawable/red_scrubber_control_pressed_holo” android:state_pressed=”true”/> <item android:drawable=”@drawable/red_scrubber_control_focused_holo” android:state_selected=”true”/> <item android:drawable=”@drawable/red_scrubber_control_normal_holo”/> </selector> Custom: red_scrubber_progress.xml <layer-list xmlns:android=”http://schemas.android.com/apk/res/android” > <item android:id=”@android:id/background” android:drawable=”@drawable/red_scrubber_track_holo_light”/> <item android:id=”@android:id/secondaryProgress”> … Read more