ฉันพยายามรับผล radiobutton สำหรับปุ่มปกติใน Android
ฉันมีปุ่มตัวเลือกแบบง่ายด้านล่าง
รหัสสำหรับสิ่งนี้คือ ::
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} การเปลี่ยนแปลงเพิ่มเติม
การเปลี่ยนแปลงครั้งสุดท้ายควรอย่างน้อยฉันควรรู้ว่าฉันเลือกปุ่มใดจากปุ่มตัวเลือกสามปุ่ม .... เป็นไปได้ไหมที่จะได้รับด้านล่าง?