Changing button style in the whole application

后端 未结 2 1486
天涯浪人
天涯浪人 2021-01-04 19:17

I\'m trying to change all the TextColor of my buttons in my app to white and also trying to make it bold. But that isn\'t happening, I\'m overwriting the android:Widge

2条回答
  •  佛祖请我去吃肉
    2021-01-04 19:52

    This will change the default button style for the entire app, include alert dialog button. Adjust the style based on yours.

    res/values/styles.xml

    
    
        
        
    
        
    
    

    res/drawable/selector_button.xml

    
    
        
        
        
    
    

    res/drawable/button_selected.xml

    
    
        
    
        
    
    

    res/drawable/button_unselected.xml

    
    
        
    
        
    
    

提交回复
热议问题