RadioButton - 如果在 Android 的 RadioGroup 内被选中,则为 Checked

3
我遇到了一个问题,无法检查我的radiogroup中是否选择了一个radiobutton。我尝试了很多方法,比如if(rg.getCheckedRadioButtonId() == -1),但是在我的代码上仍然不起作用。
我的logcat显示“String selectedansText = selectedans.getText().toString();”这一行出现了问题,有人能帮忙吗?
我还尝试了.isChecked,但它也没有起作用。
bt.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {

         RadioButton selectedans = (RadioButton) findViewById(rg.getCheckedRadioButtonId());
         String selectedansText = selectedans.getText().toString();

         if (rg.getCheckedRadioButtonId()== -1){
             Toast.makeText(grade_four_post_test.this, 
                           "choose answer", 
                           Toast.LENGTH_LONG).show();
         } else { //do something }

注意:代码中的bt已经正确声明。

01-28 22:27:07.390 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at android.view.View.performClick(View.java:4463)
01-28 22:27:07.391 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at android.view.View$PerformClick.run(View.java:18770)
01-28 22:27:07.391 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at android.os.Handler.handleCallback(Handler.java:808)
01-28 22:27:07.391 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at android.os.Handler.dispatchMessage(Handler.java:103)
01-28 22:27:07.392 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at android.os.Looper.loop(Looper.java:193)
01-28 22:27:07.392 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at android.app.ActivityThread.main(ActivityThread.java:5292)
01-28 22:27:07.392 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at java.lang.reflect.Method.invokeNative(Native Method)
01-28 22:27:07.393 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at java.lang.reflect.Method.invoke(Method.java:515)
01-28 22:27:07.393 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:828)
01-28 22:27:07.393 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:644)
01-28 22:27:07.394 27612-27612/com.example.computer.mathkiddofinal:second W/System.err:     at dalvik.system.NativeStart.main(Native Method)
01-28 22:27:07.394 27612-27612/com.example.computer.mathkiddofinal:second W/dalvikvm: threadid=1: calling UncaughtExceptionHandler
01-28 22:27:07.396 27612-27612/com.example.computer.mathkiddofinal:second E/AndroidRuntime: FATAL EXCEPTION: main
                                                                                            Process: com.example.computer.mathkiddofinal:second, PID: 27612
                                                                                            java.lang.NullPointerException
                                                                                                at com.example.computer.mathkiddofinal.grade_level.post_test.grade_four_post_test$1.onClick(grade_four_post_test.java:117)
                                                                                                at android.view.View.performClick(View.java:4463)
                                                                                                at android.view.View$PerformClick.run(View.java:18770)
                                                                                                at android.os.Handler.handleCallback(Handler.java:808)
                                                                                                at android.os.Handler.dispatchMessage(Handler.java:103)
                                                                                                at android.os.Looper.loop(Looper.java:193)
                                                                                                at android.app.ActivityThread.main(ActivityThread.java:5292)
                                                                                                at java.lang.reflect.Method.invokeNative(Native Method)
                                                                                                at java.lang.reflect.Method.invoke(Method.java:515)
                                                                                                at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:828)
                                                                                                at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:644)
                                                                                                at dalvik.system.NativeStart.main(Native Method)
01-28 22:27:07.400 696-9034/system_process V/Provider/Settings:  from settings cache , name = dropbox:data_app_crash , value = null
01-28 22:27:07.401 696-9034/system_process D/dalvikvm: create interp thread : stack size=128KB
01-28 22:27:07.401 696-9034/system_process D/dalvikvm: create new thread
01-28 22:27:07.401 696-9034/system_process D/dalvikvm: new thread created
01-28 22:27:07.401 696-9034/system_process D/dalvikvm: update thread list
01-28 22:27:07.402 696-28496/system_process D/dalvikvm: threadid=79: interp stack at 0x63b53000
01-28 22:27:07.402 696-28496/system_process D/dalvikvm: threadid=79: created from interp
01-28 22:27:07.402 696-9034/system_process D/dalvikvm: start new thread
01-28 22:27:07.402 696-9034/system_process V/Provider/Settings:  from settings cache , name = send_action_app_error , value = 1
01-28 22:27:07.402 696-28496/system_process D/dalvikvm: threadid=79: notify debugger
01-28 22:27:07.403 696-9034/system_process W/ActivityManager:   Force finishing activity com.example.computer.mathkiddofinal/.grade_level.post_test.grade_four_post_test

日志指向哪里?您应该发布日志输出.... - Opiatefuchs
3个回答

2
    @Override
    public void onClick(View v) {

            // get selected radio button from radioGroup
        int selectedId = radioSexGroup.getCheckedRadioButtonId();

        // find the radiobutton by returned id
            radioSexButton = (RadioButton) findViewById(selectedId);

        Toast.makeText(MyAndroidAppActivity.this,
            radioSexButton.getText(), Toast.LENGTH_SHORT).show();

      //Start your work here

    }

});

1
这对问题的代码没有影响,也不回答问题。 - Opiatefuchs

2

如果你这样做,会得到NullPointerException异常:

  RadioButton selectedans = (RadioButton) findViewById(rg.getCheckedRadioButtonId());
         String selectedansText = selectedans.getText().toString();//NullPointer

因为如果没有选中任何一个RadioButtonfindViewById将无法工作,因此您的RadioButton未初始化。您应该像这样做:
 int radioButtonId = rg.getCheckedRadioButtonId();

if(radioButtonId!=-1){

   //do Your stuff
    RadioButton selectedans = (RadioButton) findViewById(radioButtonId);
    String selectedansText = selectedans.getText().toString();

}else{
 Toast.makeText(grade_four_post_test.this, 
                           "choose answer", 
                           Toast.LENGTH_LONG).show();
}

它可以工作!谢谢:D。我标记为正确,因为提供了完整的细节。 - Drenyl

1
if(rg.getCheckedRadioButtonId()== -1) this means no radio button is selected.

在else部分添加以下行:

在else部分添加以下行

int selectedId = rg.getCheckedRadioButtonId();
RadioButton selectedans = (RadioButton) findViewById(selectedId);
Toast.makeText(grade_four_post_test.this,selectedans.getText(),Toast.LENGTH_SHORT).show();

您IP地址为143.198.54.68,由于运营成本限制,当前对于免费用户的使用频率限制为每个IP每72小时10次对话,如需解除限制,请点击左下角设置图标按钮(手机用户先点击左上角菜单按钮)。 - Pavya
我无法删除那行代码,因为我正在获取我的Radiogroup中所选RadioButton的文本值,并将其与另一个字符串变量进行比较。 - Drenyl
在 else 分支中,您可以添加那些行。 - Pavya

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接