0
我在我的一項活動中有一個表格,並且有大約10個radiogroups。我的問題是,我必須檢查一個radiogroups是否沒有檢查? 我的代碼示例如下圖所示: 檢查一個活動中的所有radiogroups是否被檢查
<RadioGroup
android:id="@+id/radioq1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/q1f"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="50dp"
android:text="@string/conffalse"
android:textColor="#f05252" />
<RadioButton
android:id="@+id/q1t"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="60dp"
android:text="@string/conftrue"
android:textColor="#37df47" />
</RadioGroup>
你有10個radiogroup或按鈕? –
您必須使用CheckBox而不是RadioButton/RadioGroup?作爲您的要求,您必須檢查多個項目。 –
@PurpleDroid是的他有上面的代碼10次 –