在Android中,可以通过自定义SeekBar的Thumb来实现滑块自定义。具体步骤如下:
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:thumb="@drawable/custom_thumb"
/>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/thumb_pressed" android:state_pressed="true"/>
<item android:drawable="@drawable/thumb_normal"/>
</selector>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<size
android:width="20dp"
android:height="20dp"/>
<solid
android:color="#FF0000"/>
</shape>
这样就可以实现SeekBar滑块的自定义了。