gpt4 book ai didi

java - 调用微调器的值?此外,根据微调器的值使用其他值

转载 作者:太空宇宙 更新时间:2023-11-03 12:43:30 25 4
gpt4 key购买 nike

我有一个带有数字列表的微调器“光圈”,以及一个带有两个选项的微调器“模式”。当按下按钮时,我需要使用各种输入来运行计算,包括来自“光圈”的当前选择和来自“模式”的值。如何调用微调器的值以便在计算中使用它?

另外,在计算中实现它之前,如何使用微调器模式的选择来设置这个其他值?更具体地说,如果微调器设置为 Small,那么我在计算中使用的值为 0.015,而如果选择 Large,我需要使用 0.028

我的其他输入是 EditText View ,所以现在我是这样设置的:

    input = (EditText) findViewById(R.id.input1); 
input2 = (EditText) findViewById(R.id.input2);
input3 = (EditText) findViewById(R.id.input3);
input4 = (EditText) findViewById(R.id.input4);
output = (TextView) findViewById(R.id.result);
output2 = (TextView) findViewById(R.id.result2);

//aperture dropdown
Spinner s = (Spinner) findViewById(R.id.apt);
ArrayAdapter adapter2 = ArrayAdapter.createFromResource( this, R.array.apertures,
android.R.layout.simple_spinner_item);
adapter2.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
s.setAdapter(adapter2);

//button
final Button button = (Button) findViewById(R.id.calculate);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
doCalculation();
}
});
}

private void doCalculation() {
// Get entered input value
String strValue = input.getText().toString();
String strValue2 = input2.getText().toString();
String strValue3 = input3.getText().toString();
String strValue4 = input4.getText().toString();

// Perform a hard-coded calculation
double imperial1 = (Double.parseDouble(strValue3) + (Double.parseDouble(strValue4) / 12));
double number = Integer.parseInt(strValue) * 2;
double number2 = ((number / 20) + 3) / Integer.parseInt(strValue2);

// Update the UI with the result
output.setText("Result: "+ number);
output2.setText("Result2: "+ imperial1);
}
}

这不是实际的等式,它只是确保一切正确连接的测试。我如何称呼微调器“光圈”的值和小/大微调器“模式”

最佳答案

要获取微调器的值,请根据需要调用以下方法之一:

Object item = spinner.getSelectedItem();

long id = spinner.getSelectedItemId();

int position = getSelectedItemPosition();

View selectedView = getSelectedView();

在您的情况下,您可以将微调器声明为最终的并将所选项目传递给 doCalculations() 方法,如下所示:

    final Spinner aptSpinner = (Spinner) findViewById(R.id.apt);
...

//button
final Button button = (Button) findViewById(R.id.calculate);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
doCalculation(aptSpinner.getSelectedItem());
}
});
}

private void doCalculation(Object selectedItem) {

...

}

拿起一本基本的 Java 书籍并了解 Java 中作用域的工作原理可能对您有好处。

关于java - 调用微调器的值?此外,根据微调器的值使用其他值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2129903/

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