取消我有一個單選按鈕一個RadioGroup中內,的Android - 單選按鈕不與初始選中狀態
問題出現了,當我設置按鈕
機器人的初始狀態:檢查=「真「
,因爲如果我按單選按鈕‘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>
屏幕:
初始狀態(正確):
最終狀態,當我按下單選按鈕 「F」(錯誤):
感謝
你,如果你想手動管理設置按鈕的初始狀態 – AkashG 2012-07-16 13:25:14
你必須設置F檢查比M unchecked – AkashG 2012-07-16 13:25:58