aqui esta
para tu layout
Código XML:
Ver original<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/phone_mode_"
android:padding="10dp" />
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/gen_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/general"
android:button="@drawable/my_radio"/>
<RadioButton
android:id="@+id/sil_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/silent"
android:button="@drawable/my_radio"/>
<RadioButton
android:id="@+id/met_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/meeting"
android:button="@drawable/my_radio"/>
<RadioButton
android:id="@+id/off_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/offline"
android:button="@drawable/my_radio" />
</RadioGroup>
</LinearLayout>
y para el drawable , segun el estado
Código XML:
Ver original<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/radio_on" />
<item android:state_checked="false" android:drawable="@drawable/radio_off" />
</selector>
fuente
http://vimaltuts.com/android-tutoria...m-radio-button