3

我在 RadioGroup 中有一个 RadioButton,

当我设置按钮的初始状态时出现问题

机器人:检查=“真”

因为如果我按下单选按钮“F”,单选按钮“M”不会取消选中...

我能怎么做?怎么了?

这是代码:

<RadioGroup
   android:id="@+id/registrazione_utente_sesso"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:orientation="horizontal" >

   <RadioButton
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:checked="true"
      android:text="M"
      android:textColor="#ff7415"
      android:textSize="18sp" />

   <RadioButton
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="13.33dp"
      android:text="F"
      android:textColor="#ff7415"
      android:textSize="18sp" />
</RadioGroup>

屏幕:

初始状态(正确):

http://i.imgur.com/YsUIg.png

当我按下 RadioButton "F" 时的最终状态(错误):

http://i.imgur.com/YJms9.png

谢谢

4

1 回答 1

5

使用 android:id 为单选按钮分配一个唯一的 id,然后设置 RadioGroup 的 android:checkedButton 属性,如下所示:

<RadioGroup
   android:id="@+id/registrazione_utente_sesso"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:orientation="horizontal"
   android:checkedButton="@+id/radiobutton_m" >

   <RadioButton
      android:id="@+id/radiobutton_m"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="M"
      android:textColor="#ff7415"
      android:textSize="18sp" />

   <RadioButton
      android:id="@+id/radiobutton_f"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="13.33dp"
      android:text="F"
      android:textColor="#ff7415"
      android:textSize="18sp" />
</RadioGroup>
于 2012-07-16T13:26:01.150 回答