ใช่เป็นไปได้ที่คุณต้องกำหนดสไตล์ของคุณเองสำหรับปุ่มตัวเลือกที่ res / values / styles.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomTheme" parent="android:Theme">
<item name="android:radioButtonStyle">@style/RadioButton</item>
</style>
<style name="RadioButton" parent="@android:style/Widget.CompoundButton.RadioButton">
<item name="android:button">@drawable/radio</item>
</style>
</resources>
"radio" ที่นี่ควรเป็น radio.xml ที่สามารถดึงออกมาได้:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_window_focused="false"
android:drawable="@drawable/radio_hover" />
<item android:state_checked="false" android:state_window_focused="false"
android:drawable="@drawable/radio_normal" />
<item android:state_checked="true" android:state_pressed="true"
android:drawable="@drawable/radio_active" />
<item android:state_checked="false" android:state_pressed="true"
android:drawable="@drawable/radio_active" />
<item android:state_checked="true" android:state_focused="true"
android:drawable="@drawable/radio_hover" />
<item android:state_checked="false" android:state_focused="true"
android:drawable="@drawable/radio_normal_off" />
<item android:state_checked="false" android:drawable="@drawable/radio_normal" />
<item android:state_checked="true" android:drawable="@drawable/radio_hover" />
</selector>
จากนั้นใช้ธีมที่กำหนดเองกับทั้งแอปหรือกับกิจกรรมที่คุณเลือก
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับธีมและสไตล์โปรดดูที่http://brainflush.wordpress.com/2009/03/15/understand-android-themes-and-styles/ซึ่งเป็นแนวทางที่ดี