I have an application that has black background. In one of the screens of the application I have a RadioButton
. I need to change the color of this RadioButtom so that it appears on the screen.
<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New RadioButton"
android:id="@+id/radioButton"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:buttonTint="#FFF" />
The problem is that older versions of Android do not work, that is, the color does not change. Could someone help me with this?