How to properly remove padding (or margin?) around buttons in Android?

前端 未结 13 1009
醉梦人生
醉梦人生 2020-12-13 04:50

Currently, I have the following bottom log in button.

When button is not being pressed

When button is being pressed

The XML loo

13条回答
  •  甜味超标
    2020-12-13 05:43

    In styles.xml

    
    

    In values/drawable:

    my_drawable.xml

    
    
        
        
        
    
    

    selector.xml

    
    
        
        
        
    
    

    In values/drawable-v21:

    my_drawable.xml

    
    
        
        
    
    

    selector.xml

    
    
        
    
    

    In layout:

    Result on API 19:

    Result on API 21:

    Source code

提交回复
热议问题