自定义RadioButton样式的有关问题

自定义RadioButton样式的问题
要实现的效果自定义RadioButton样式的有关问题

目前状况:
我用RadioButton实现
 
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/qy_bottom_home_selected"  android:state_checked="true"/>
    <!-- 选中时效果 -->
    <item android:drawable="@drawable/qy_bottom_home_normal" android:state_checked="false"/>
    <!-- 未选中时效果 -->

</selector>


    <style name="qy_bottom_home_style" parent="@android:style/Widget.CompoundButton.RadioButton">  
    <item name="android:button">@drawable/qy_bottom_home_bg</item>  
</style> 



使用上面的样式:
 <RadioButton
                android:id="@+id/rb_qy_bottom_home"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="@style/qy_bottom_home_style"  
                android:layout_weight="1"
                android:background="@android:color/transparent"
                android:button="@null"
                android:drawableTop="@drawable/qy_bottom_home_bg"
                android:gravity="center"
                android:text="@string/qy_bottom_home"
                android:textColor="#ff999999"
                android:textSize="12.0sp" />



自定义RadioButton样式的有关问题

但是这种方式只能改变图片,实现两个图片之间的切换,但是 RadioButton文字的颜色并没有改变为橘黄色。

请教一下大神,如何在RadioButton自定义样式中,即实现两个图片的切换,又实现文字的两种颜色之间的切换?

------解决方案--------------------
自定义RadioButton样式的有关问题我测试过没问题