मैं एंड्रॉइड में नियमित बटन के लिए रेडियोबॉटन प्रभाव प्राप्त करने की कोशिश कर रहा हूं
मेरे पास एक सरल एंड्रॉइड रेडियो बटन है

इसके लिए कोड है ::
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="RadioButton1" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton2" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton3" />
</RadioGroup>
</RelativeLayout>
इसे नीचे के रूप में अनुकूलित करने के लिए कैसे ::

धन्यवाद !
[EDIT] उत्तरों में से एक से कोड का उपयोग कर रहा है

लेकिन बटन नाम का चयन विकल्प द्वारा किया जाता है कि इसे कैसे हटाया जाए?
{EDIT} अधिक परिवर्तन
अंतिम परिवर्तनों को कम से कम मुझे पता होना चाहिए कि मैंने कौन से बटन को तीन रेडियो बटन में से चुना है .... क्या यह नीचे के रूप में संभव है?



