Draw Rectangle View with curve bottom In Android

后端 未结 2 680
鱼传尺愫
鱼传尺愫 2021-02-04 10:18

Good day.I want to draw an rectangle as a view but which bottom shall be curved.I do not want to apply background image like that or use any views,because if i use an view and s

2条回答
  •  悲&欢浪女
    2021-02-04 10:46

    This is what I did to achieve curved status bar on my android application. This created a toolbar that can be over other views so when you scroll views goes under the toolbar.

    First I hid the original Toolbar from activity by creating a no title theme and selecting that theme from manifest. Then I created a Titlebar of my own and then by playing with margins and paddings I achieved desired result.

    statusbar

    sytles.xml:

        
    

    AndroidManifest.xml

    
    

    arch.xml:

    
    
    
        
    
    
        
            
        
    
    
    

    mainActivity.xml:

    
    
    
    
    
    
        
    
    
    
    
        
    
            
    
                
          
            
    
        
    

提交回复
热议问题