gpt4 book ai didi

java - Android Studio ThermoCalc 华氏度到摄氏度 反之亦然

转载 作者:行者123 更新时间:2023-12-01 11:47:04 25 4
gpt4 key购买 nike

我目前正在 Android Studio 中编程,创建一个“ThermoCalc”。基本上我需要将华氏温度转换为摄氏度,反之亦然。我的问题是我的计算结果是一样的,并且我的编码中有一些错误,也许是不应该出现的地方?希望有人能帮忙。我是编码新手,正在慢慢学习。如有任何反馈,我们将不胜感激。谢谢

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

final EditText etTemp = (EditText) findViewById(R.id.txtTemperature);
final TextView tvOutput = (TextView) findViewById(R.id.lblOutput);
final RadioButton radFahToCelLogic = (RadioButton) findViewById(R.id.radFahToCel);
final RadioButton radCelToFahLogic = (RadioButton) findViewById(R.id.radCelToFah);

Button btnConvertLogic = (Button) findViewById(R.id.btnConvert);
btnConvertLogic.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

double dblFahrenheit = 0;
double dblCelcius = (5.0/9) * (dblFahrenheit -32);
double dblConvertedTemp = 0;
double dblFahConversion;

// format
DecimalFormat dfTenth = new DecimalFormat("#.#");


if (radFahToCelLogic.isChecked())
{
if (dblFahrenheit <= 212)
{
dblConvertedTemp = (5.0/9.0) * (dblFahrenheit - 32);
tvOutput.setText (dfTenth.format(dblConvertedTemp));
}
}

}
});

我相信这个问题与我的 dblFahrenheit 设置为“0”有关。

基本上,在运行应用程序的模拟器中,我有一个 EditText 小部件(用于输入温度)、一个 TextView 小部件(用于显示输出)以及两个位于 RadioGroup 中的单选按钮。

在我的 if 语句中,我检查输入的温度是否等于或小于 212。如果是,那么我需要将输入的温度从华氏温度转换为摄氏度。

运行我的应用程序时,无论我在 EditText(Temperature) 中输入什么数字,答案始终是“17.8”。

最佳答案

看起来您只是忘记使用输入。

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

final EditText etTemp = (EditText) findViewById(R.id.txtTemperature);
final TextView tvOutput = (TextView) findViewById(R.id.lblOutput);
final RadioButton radFahToCelLogic = (RadioButton) findViewById(R.id.radFahToCel);
final RadioButton radCelToFahLogic = (RadioButton) findViewById(R.id.radCelToFah);

Button btnConvertLogic = (Button) findViewById(R.id.btnConvert);
btnConvertLogic.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

double dblFahrenheit = 0;
double dblCelcius = (5.0/9) * (dblFahrenheit -32);
double dblConvertedTemp = 0;
double dblFahConversion;

// format
DecimalFormat dfTenth = new DecimalFormat("#.#");


if (radFahToCelLogic.isChecked())
{
String strFah = etTemp.getText().toString();
if (!strFah.isEmpty()){

dblFahrenheit = Double.parseDouble(strFah);

if (dblFahrenheit <= 212)
{
dblConvertedTemp = (5.0/9.0) * (dblFahrenheit - 32);
tvOutput.setText (dfTenth.format(dblConvertedTemp));
}
}
}

}
});

关于java - Android Studio ThermoCalc 华氏度到摄氏度 反之亦然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29068014/

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