Before starting coding for Custom SeekBar,You must have good concept of following topics. 1. Layer List 2. Animation List 3. Selector Layer List :A LayerDrawable is a drawable object that manages an array of other drawables. Each drawable in the list is drawn in the order of the list—the last drawable in the list is drawn on top. <layer-list xmlns:android= "http://schemas.android.com/apk/res/android" > <item android:id= "@android:id/background" android:drawable= "@drawable/seekbar_total" /> <item android:id= "@android:id/secondaryProgress" > <clip android:drawable= "@drawable/seekbar_buffer" /> </item> <item android:id= "@android:id/progress" > <clip android:drawable= "@drawable/seekbar_played" /> </item> </layer-list> Animation List: A AnimationDrawable is a drawable object that is used to create fram...
Intent to make work easy.