android button selector

前端 未结 6 736
梦毁少年i
梦毁少年i 2020-11-22 04:19

This is a button selector such that when normal it appears red, when pressed it appears grey.

I would like to ask how could the code be further directly modified suc

6条回答
  •  眼角桃花
    2020-11-22 05:14

    Create custom_selector.xml in drawable folder

    
    
       
       
    
    

    Create selected.xml shape in drawable folder

    
       
       
       
       
    
    

    Create unselected.xml shape in drawable folder

    
       
       
       
       
    
    

    Add following colors for selected/unselected state in color.xml of values folder

    #a8cf45
    #ff8cae3b
    

    you can check complete solution from here

提交回复
热议问题