Button设置弧度背景的方法

  给Button设置弧度背景的一般方法是先在drawable里定义三个xml文件:

  第一个:button_normal.xml



     
     

  第二个:button_press.xml



     
     
  第三个:button_bg_selector



    
    
    然后在Button里添加
android:background="@drawable/button_bg_selector"

这个属性就可以了。其实在这里我们没有必要定义三个xml文件,直接定义一个xml文件就可以了。



    
        
            
            
        
    
    
        
            
            
        
    










你可能感兴趣的:(Android开发笔记)