How to Customize a Progress Bar In Android

前端 未结 9 2391
鱼传尺愫
鱼传尺愫 2020-11-22 16:07

I am working on an app in which I want to show a ProgressBar, but I want to replace the default Android ProgressBar.

So how can I customize

9条回答
  •  感情败类
    2020-11-22 16:38

    There are two types of progress bars called determinate progress bar (fixed duration) and indeterminate progress bar (unknown duration).

    Drawables for both of types of progress bar can be customized by defining drawable as xml resource. You can find more information about progress bar styles and customization at http://www.zoftino.com/android-progressbar-and-custom-progressbar-examples.

    Customizing fixed or horizontal progress bar :

    Below xml is a drawable resource for horizontal progress bar customization.

     
    
        
            
                
                
                
            
        
        
            
                
                    
                    
                    
                
            
        
    
    

    Customizing indeterminate progress bar

    Below xml is a drawable resource for circular progress bar customization.

    
    
        
                    
                        
                            
                            
                        
                               
        
    
    

提交回复
热议问题