You Can use Custom Background
<RadioButton
android:id="@+id/radioButtom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:button="@drawable/custom_background"
android:checked="true"
android:text="Your Text" />
Here is Custom_background.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/your_regular_state_drawable"
android:state_checked="true"
android:state_pressed="true" />
<item
android:drawable="@drawable/your_selected_state_drawable"
android:state_pressed="true" />
<item
android:drawable="@drawable/your_selected_state_drawable"
android:state_checked="true" />
<item
android:drawable="@drawable/your_regular_state_drawable" />
Referance: You can get e better description from here https://stackoverflow.com/a/19163987/12676247