RadioButton修改按钮颜色

在res->values->styles文件中加入:

<style name="MyRadioButton" parent="Theme.AppCompat.Light">
        <item name="colorControlNormal">#FF9800</item>
        <item name="colorControlActivated">@color/loginNormal</item>
</style>

然后在RadioButton的属性中加入:

android:theme="@style/MyRadioButton"

即可