Can't change Radio Button color on Android

后端 未结 8 1604
忘了有多久
忘了有多久 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-01 23:55

    RadioButton raPrivate = (RadioButton) layout.findViewById(R.id.radioPrivate);
    int textColor = Color.parseColor(#000000);
    raPrivate.setButtonTintList(ColorStateList.valueOf(textColor));
    

提交回复
热议问题