我有一個微調器'光圈'設置了一個數字列表,以及一個微調'模式'有兩個選項。當按下按鈕時,我需要使用各種輸入來運行計算,包括從「光圈」中選擇的當前選擇和從「模式」中導出的值。我如何調用微調器的值,以便在計算中使用它?調用微調器的值?另外,根據微調器的值使用其他值
另外,如何在計算中使用微調器的模式選擇來設置這個其他值之前?更具體地說,如果微調器設置爲小,那麼我在計算中使用的值是0.015,而如果選擇大,我需要使用0.028
我的其他輸入是EditText視圖,所以現在我設置了像這樣:
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);
}
}
這不是實際的方程式,它只是一個測試,以確保一切連接正確。我怎麼會叫微調的價值「孔眼」和小/大旋「模式」
感謝您的答覆。我對Java很陌生,所以我很抱歉。我相信Object item = spinner.getSelectedItem();是正確的,但我如何提出這個問題呢?當我嘗試從計算內部調用它時,Eclipse說它無法解析'光圈'。它工作正常,如果我把代碼放在計算之外,但在計算內部它不能解析對象名稱(在你的例子「item」中) – Sean 2010-01-25 03:36:02
感謝您的更新。 Eclipse沒有顯示任何錯誤,但是當我有「Object item = aperture.getSelectedItem();」 (在你的例子中,微調器被命名爲光圈,不適用於Spinner),當我點擊按鈕時,它會導致應用程序崩潰。什麼可能導致這個? 對不起,所有的問題。我知道我應該首先學習java,而不是像這樣頭部跳躍,但是這個週末我需要這個應用來拍攝電影。毋庸置疑,我將很快收到一些Java書籍:) – Sean 2010-01-25 04:14:09
有什麼例外? – 2010-01-25 10:30:45