SeekBar自定义样式最优实现

1. 布局文件

    
  • android:thumb为滑块的样式
  • android:progressDrawable为进度条样式
  • android:maxHeight和android:minHeight设置进度条的厚度,请将这两个值设为同一个值(亲测4.4中只设置android:maxHeight时,进度条没居中)
    下面自定义滑块的样式和进度条样式

2. 自定义滑块的样式

新建文件selector_seekbar_thumb.xml



    
    

新建文件shape_seekbar_thumb_normal.xml



    
    
    

3. 自定义进度条样式

新建文件seekbar_layer.xml



    
    
        
            
            
            
        
    
    
    
    
    
        
            
                
                
                
            
        
    

你可能感兴趣的:(SeekBar自定义样式最优实现)