gpt4 book ai didi

Android RadioButton IsSelected 不工作

转载 作者:行者123 更新时间:2023-11-29 14:28:28 25 4
gpt4 key购买 nike

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

                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;
}

最佳答案

而不是使用 isSelected()isChecked()

关于Android RadioButton IsSelected 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11087014/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com