美文网首页
Android 5.0 以上SeekBar thumb 周围一圈

Android 5.0 以上SeekBar thumb 周围一圈

作者: 王世军Steven | 来源:发表于2017-04-05 10:32 被阅读239次

    问题 : Android 5.0 以上 SeekBar thumb 出现一圈父控件色,如下图 :

    效果图

    解决办法 : 添加属性android:splitTrack="false"

    <SeekBar
     android:layout_weight="1"
     android:maxHeight="6dp"
     android:minHeight="6dp"
    android:splitTrack="false"
     android:thumb="@drawable/progress_thumb"
     android:progressDrawable="@drawable/progress_horizontal"
     android:progress="20"
     android:layout_width="0dp"
     android:layout_height="wrap_content"/>
    
    效果图

    相关文章

      网友评论

          本文标题:Android 5.0 以上SeekBar thumb 周围一圈

          本文链接:https://www.haomeiwen.com/subject/bvetattx.html