Android progress bar with padding

前端 未结 4 1650
情深已故
情深已故 2020-12-06 03:19

I want to make my progress bar looks something like that:

\"enter

I dont want

4条回答
  •  孤城傲影
    2020-12-06 03:51

    A simple workaround is to wrap progress bar into layout which has rounded shape and same background color as progress bar.

    Sample progress bar drawable (drawable/progress_bar.xml):

    
    
        
            
                
                
                
            
        
    
        
            
        
    
    

    Progress bar style:

    
        
    
    

    Layout shape (drawable/rounded_shape.xml):

    
    
        
        
        
    
    

    Activity layout:

    
          
                
            
    
    

    Effect:

    enter image description here

    To increase padding of progress bar you have to increase padding in rounded_shape file.

提交回复
热议问题