Android RadioButton IsSelected无效

时间:2012-06-18 16:24:57

标签: android

我有一个无线电组,定义了两个黑色和彩色按钮。当我尝试根据选择进行计算时没有任何反应。知道为什么我的单选按钮不起作用吗?感谢

                public void onClick(View v) {
                // TODO Auto-generated method stub
                EditText startingAmt = (EditText) findViewById(R.id.editText1);
                RadioButton black = (RadioButton) findViewById(R.id.radio0);
                RadioButton color = (RadioButton) findViewById(R.id.radio1);
                if(!TextUtils.isEmpty(startingAmt.getText().toString().trim())){


                TextView ***** = (TextView)findViewById(R.id.textView1);
                double  temp1 = 0.0,
                        endAmt = 0.0,
                        startAmt = 0.0;
                String answer;
                Editable editableValue1 = startingAmt.getText();
                startAmt = Double.parseDouble(editableValue1.toString());
                if(color.isSelected()){
                    temp1 = startAmt * 1.15;
                    endAmt = temp1 * .15;
                    endAmt = (double)Math.round(endAmt*10)/10;
                }
                if(black.isSelected()){
                    temp1 = startAmt * 1.10;
                    endAmt = temp1 * .10;
                    endAmt = (double)Math.round(endAmt*10)/10;
                }

2 个答案:

答案 0 :(得分:5)

而是使用isSelected()转到isChecked()

答案 1 :(得分:4)

使用方法isChecked代替isSelected。或者,您可以使用包含两个RadioGroup的{​​{1}}上的getCheckedRadioButtonId