我想知道RadioButton在检查时是否可能以编程方式以及如何以编程方式更改其颜色?
PS:我不想使用XML
在XML中,我使用类似的方法及其工作:
<RadioButton
android:id="@+id/radio_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test1"
android:textColor="@color/red"
android:textSize="16dp"
android:paddingStart="10dp"
android:paddingEnd="0dp"
android:theme="@style/CustomColorRadioButton" />
以我的style.xml
<style name="CustomRadioButton" parent="AppTheme">
<item name="colorControlActivated">@color/blue</item>
</style>
我该如何以编程方式做到这一点?
答案 0 :(得分:2)
尝试一下:
ColorStateList colorStateList = new ColorStateList(
new int[][]{
new int[]{-android.R.attr.state_enabled}, //disabled
new int[]{android.R.attr.state_enabled} //enabled
},
new int[] {
Color.BLACK, //disabled
Color.BLUE //enabled
}
);
radio.setButtonTintList(colorStateList);