seekbar If you want to customize seekbar in Android then follow the steps mentioned below:- 1) To customize seekbar background create a new xml file in your project's drawable folder . seekbar_background.xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <gradient android:angle="90" android:centerColor="#fff" android:endColor="#fff" android:startColor="#fff" /> <corners android:radius="2dp" /> <stroke android:width="2dp" android:color="#fff" /> <stroke android:width="2dp" android:color="#fff" /> </shape> 2) To customize seekbar progress create a new xml file in your project's drawable folder . seekbar_progress.xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <gradient android:angle="90" android:centerColor="#7FBD5C" ..... Read full blog at :http://findnerd.com/list/view/Customize-seekbar-in-android/9265/
Topics