ceryle / RadioRealButton

A custom radio button for Android API 12+
Apache License 2.0
259 stars 73 forks source link

Ho to change text color of selected button? #43

Closed imTefa closed 5 years ago

imTefa commented 5 years ago

Hi I am trying to change the selected button color but with no success

color_selector.xml `<?xml version="1.0" encoding="utf-8"?>

` and this is my radio button ``
ALXKAY commented 5 years ago

Use the rrb_textColorTo attribute

<co.ceryle.radiorealbutton.RadioRealButton
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 app:rrb_text="Button"
 app:rrb_textColor="@android:color/black"
 app:rrb_textColorTo="@android:color/white" />
imTefa commented 5 years ago

It works, Thanks