有没有办法一起加入单选组,所以当单击组 a 中的按钮时,未单击组 b 中的按钮
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_below="@id/NFCHeaderTextView"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/hello">
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/RadioGroup">
</RadioGroup>
<TextView android:id="@+id/Savings"
android:background="@drawable/two_tone_green_button_selector"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="16dp"
android:gravity="left|center_vertical"
android:textColor="@color/two_green_button_color_selector"
android:onClick="onRadioButtonClicked"
android:text="@string/Savings"/>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/SavingsR">
</RadioGroup>
<TextView android:id="@+id/Credit"
android:background="@drawable/two_tone_green_button_selector"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="16dp"
android:gravity="left|center_vertical"
android:textColor="@color/two_green_button_color_selector"
android:onClick="onRadioButtonClicked"
android:text="@string/Credit"/>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/CreditR">
</RadioGroup>
</RadioGroup>
</RelativeLayout>
我有这段代码,但是当我运行它时,我仍然可以单击来自两个不同组的两个按钮,我在 eclipse 中使用 java