android自定义seekbar样式,SeekBar动态改变颜色 -- 关于自定义SeekBar

————————————————————————————

|   本文链接:http://my.oschina.net/lifj/blog/153569  |

|   (防止盗链)                                                   |

————————————————————————————

案例使用的图片如下:

3f5f8a7b5d08ac634dcf70a5a1073b80.png          

18a6d780cddb88a14509797bf09dd8c8.png                

ac8a06d273c34e08f6f14cb255c2c071.png

1.在res/drawable目录下新增一个xml风格文件,seekbar_define_style.xml

xmlns:android="http://schemas.android.com/apk/res/android">

android:id="@android:id/background"

android:drawable="@drawable/hou"/>

android:id="@android:id/progress"

android:drawable="@drawable/qian"/>

android:id="@android:id/secondaryProgress"

android:drawable="@drawable/qian"/>

2.在res/drawable下定义个seekbar_thumb.xml文件

android:state_focused="true"

android:state_pressed="true"

android:drawable="@drawable/ic_launcher" />

android:state_focused="false"

android:sta

你可能感兴趣的:(android自定义seekbar样式,SeekBar动态改变颜色 -- 关于自定义SeekBar)