自定义SeekBar细节记录

来源:互联网 发布:武汉大学网络教育平台 编辑:程序博客网 时间:2024/04/29 19:38

1.为了兼容安卓5.0以上,style里面设置 android:splitTrack="false"


2.为了让出现效果,需要使用clip


<?xml version="1.0" encoding="UTF-8"?>
<layer-list
  xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background" android:drawable="@drawable/background" />
    <item android:id="@android:id/progress">
        <clip android:drawable="@drawable/seek_color" />
    </item>
</layer-list>


0 0
原创粉丝点击