android中的单选按钮 - 如果没有选中则崩溃

时间:2015-10-31 00:22:30

标签: javascript android

我在Android应用程序中使用以下代码来检查无线电组中所选的单选按钮,它运行良好但如果没有选择单选按钮则崩溃。

如何将其包装在if语句中以防止应用程序崩溃?

    checkRadioButtonId =    genderRD.getCheckedRadioButtonId();// get selected radio button from radioGroup
    checkedRBValue =        (RadioButton) findViewById(checkRadioButtonId);       // find the radio button by returned id
    radioButtonText =       checkedRBValue.getText().toString();

感谢。

1 个答案:

答案 0 :(得分:0)

抱歉,我现在无法编译它,但您可以尝试:

if(checkRBValue != null){

//enter your code here.

}

希望这会有所帮助。 :)