要自定義SeekBar,你可以使用xml布局文件和自定義的Style來(lái)實(shí)現(xiàn)。以下是一個(gè)簡(jiǎn)單的示例:
<?xml version="1.0" encoding="utf-8"?>
<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/custom_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:thumb="@drawable/custom_thumb"
android:progressDrawable="@drawable/custom_progress"
android:secondaryProgressDrawable="@drawable/custom_secondary_progress" />
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#FF0000" />
<size android:width="20dp" android:height="20dp" />
</shape>
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<solid android:color="#DDDDDD" />
</shape>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<solid android:color="#00FF00" />
</shape>
</clip>
</item>
</layer-list>
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<solid android:color="#DDDDDD" />
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<solid android:color="#0000FF" />
</shape>
</clip>
</item>
</layer-list>
<include layout="@layout/custom_seekbar" />
這樣就可以自定義SeekBar的樣式和屬性了。你可以根據(jù)自己的需求修改SeekBar的樣式,例如改變拇指的顏色和大小,改變進(jìn)度的顏色等。