android实现View增加带阴影的边框,渐变阴影边框,渐变边框

android实现View增加带阴影的边框,渐变阴影边框,渐变色边框,,

直接上代码。

在res---> drawable里创建资源drawable文件,

gradient_borde.xml

Root element 选择 layer-list



    
        
            
            
            
        
    
    
        
            
            
            
        
    
    
        
            
            
            
        
    
    
        
            
            
            
        
    
    
        
            
            
            
        
    
    
        
            
            
            
        
    
    
        
            
            
            
        
    
    
        
            
            
            
        
    
    
        
            
            
        
    

然后在而已文件中 增加 

android:background="@drawable/gradient_borde"

或者在代码中增加

view.setBackgroundResource(R.drawable.gradient_borde);

你可能感兴趣的:(android开发,android)