Can't change Radio Button color on Android

后端 未结 8 1648
忘了有多久
忘了有多久 2021-01-01 23:52

I\'m using Android Studio. I need to change the color of the Radio Button, after changing the Button Tint Color value to the one I need it works on the preview, but whenever

8条回答
  •  再見小時候
    2021-01-02 00:08

    This can be done in two ways (to support pre-Lollipop):

    1. Use AppCompatRadioButton:

      AppCompatRadioButton radioButton;
      // now use following methods to set tint colour
      radioButton.setSupportButtonTintMode();
      radioButton.setSupportButtonTintList();
      
    2. Apply this as style to your RadioButton in your XML:

      
      

提交回复
热议问题