<style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
<item name="android:indeterminateOnly">false</item>
<item name="android:progressDrawable">@drawable/custom_seek_bar_style</item>
<item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
<item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
<item name="android:focusable">true</item>
<item name="android:paddingLeft">16dp</item>
<item name="android:paddingRight">16dp</item>
</style>
这是seekBar的style文件
比较关键的是 android:progressDrawable这个属性设置的drawable文件就是seekBar的主要UI配置文件。
而thumb后面对应的drawable文件是seekBar上可以拖拽的按钮的资源文件。
还有maxHeight,minHeight是设置高度的。在这里就不一一赘述。
主要讲讲android:progressDrawable对应的资源文件,下面是custom_seek_bar_style的内容:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!--第一个item,id=background 是seekBar整个的背景设置-->
<item android:id="@android:id/background"
android:drawable="@drawable/a"/>
<!--第二个item, id=seconddaryPrpgress 一般是用来表示缓冲区。(配置和第三个item一样就可以)-->
<item android:id="@android:id/secondaryProgress">
<scale android:scaleWidth="100%">
<selector>
<item android:state_enabled="false">
<color android:color="@android:color/transparent"/>
</item>
<item android:drawable="@drawable/a"/>
</selector>
</scale>
</item>
<!--第三个item, id=progress 一般表示 已经下载完成或滑动选中的部分,也可以理解成seekBar滑动按钮左边的UI配置-->
<item android:id="@android:id/progress">
<scale android:scaleWidth="100%">
<selector>
<item android:state_enabled="false">
<color android:color="@android:color/transparent"/>
</item>
<item android:drawable="@drawable/b"/>
</selector>
</scale>
</item>
</layer-list>
这里面有几个地方需要注意:
1.三个item的顺序不能改变。改变会出UI问题,具体原因请看源码。
2.一般seekBar只有滑动按钮左右两部分UI。所以第二个item的drawable一般只要和第一个item的drawable一样就可以了。因为他们都是在seekBar右边的UI。
3自定义样式的seekbar中,progress和secondaryprogress要根据其所在layerlist中的先后顺序,设置其中后面出现的透明度为非100%不透明的,这样才能让底下的另一个可见。