gpt4 book ai didi

android - 单击单选按钮强制关闭

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

每当我尝试按下模拟器上的单选按钮时,它都会强制关闭!

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button b = (Button)this.findViewById(R.id.btn_confirm);
b.setOnClickListener(this);
RadioButton radio_ctf = (RadioButton) findViewById(R.id.radio_ctf);
RadioButton radio_ftc = (RadioButton) findViewById(R.id.radio_ftc);
radio_ctf.setOnClickListener(this);
radio_ftc.setOnClickListener(this);
}
@Override
public void onClick(View v)
{
TextView tv = (TextView)this.findViewById(R.id.tv_result);
EditText et = (EditText)this.findViewById(R.id.et_name);
RadioButton radio_ctf = (RadioButton) findViewById(R.id.radio_ctf);
RadioButton radio_ftc = (RadioButton) findViewById(R.id.radio_ftc);
double y = 0;
int x = Integer.parseInt(et.getText().toString());
if(radio_ctf.isChecked())
{
y = ((double)x * 1.8) + 32;
}
if(radio_ftc.isChecked())
{
y = ((double)x - 32) * 0.555;
}
String text = "Result:" + y;
tv.setText(text);

最佳答案

首先,查看 DDMS 控制台中的错误(DDMS 按钮,如果您使用 eclipse)。造成这种错误的原因有很多。实际上,这意味着存在未处理的 Java 异常。

关于android - 单击单选按钮强制关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2484386/

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