0

如果我有以下无线电组:

<RadioGroup
    android:id="@+id/rgType"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="6" >

    <RadioButton
        android:id="@+id/rbBrides"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="true"
        android:text="Bridge" />

    <RadioButton
        android:id="@+id/gbTunnel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Tunnel" />

    <RadioButton
        android:id="@+id/rbHighway"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Highway" />
</RadioGroup>

我想做以下检查:

If (rgType is selected) {
system.out.println("ok");
}
if (rgType is void/null/not selected) {
system.out.println("choose at least one selection");
}

我可以使用isChecked()which 用于单个单选按钮,如下所示?

if (rgType.isChecked()) {

}
else {
}
4

1 回答 1

2

您可以使用getCheckedRadioButtonId并查看是否RadioButtons检查了其中一个。如果没有,我不确定它会返回什么,但可能是null或者更有可能-1。无论哪种方式,运行它,看看它返回什么。

我相信如果没有检查它确实会返回-1,所以试试

  if (rgType == -1)
  {
      system.out.println("choose at least one selection");        
  }
  else
  {
       system.out.println("ok");  
  }

无线电集团

于 2013-07-23T20:03:44.190 回答