我想設置一個微調項目等於到一個特定整數。我使用onItemSelected,試圖做到這一點,但問題是,我需要整數設置爲項目選擇是在同一行乘以另一個的EditText與整數。爲此我想mulitply由行混爲一談了一下,我所有的EditTexts的,是參考到一個列表,然後迭代,這樣我可以添加他們都放棄了。我如何獲得每個的EditText在同一行的選擇微調項目(它有一個INT值)到乘由選擇微調項目?這是我到目前爲止...... 對不起!如何設置一個微調項目等於一個值
int count = 1;
double gradeValue;
List<EditText> allEd = new ArrayList<EditText>();
List<Spinner> allSp = new ArrayList<Spinner>();
@SuppressWarnings("deprecation")
public void onClick(View v) {
TableLayout tableLayout1 = (TableLayout) findViewById(R.id.tableLayout1);
switch(v.getId()){
case R.id.button1:
if(count != 16){
count++;
// Create the row only when the add button is clicked
TableRow tempRow = new TableRow(MainActivity.this);
EditText tempText1 = new EditText(MainActivity.this);
EditText tempText2 = new EditText(MainActivity.this);
TextView tempTextView = new TextView(MainActivity.this);
Spinner spinnerTemp = new Spinner(MainActivity.this);
EditText editText1 = (EditText) findViewById(R.id.editText1);
EditText editText2 = (EditText) findViewById(R.id.editText2);
TextView textView3 = (TextView) findViewById(R.id.textView3);
Spinner s = (Spinner) findViewById(R.id.spinner1);
tempTextView.setText(count + ".");
tempRow.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
tempText1.setLayoutParams(editText1.getLayoutParams());
tempText2.setLayoutParams(editText2.getLayoutParams());
tempTextView.setLayoutParams(textView3.getLayoutParams());
tempText1.setInputType(InputType.TYPE_CLASS_TEXT);
tempText2.setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL);
tempText2.setId(count);
spinnerTemp.setLayoutParams(s.getLayoutParams());
spinnerTemp.setId(count);
String options[] = { "A+", "A", "A-", "B+", "B", "B-", "C+", "C", "C-", "D+", "D", "D-", "F" };
ArrayAdapter<String> spinnerArrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_dropdown_item, options);
spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); // The drop down view
spinnerTemp.setAdapter(spinnerArrayAdapter);
allEd.add(tempText2);
allEd.add(editText2);
allSp.add(spinnerTemp);
tempRow.addView(tempTextView);
tempRow.addView(tempText1);
tempRow.addView(tempText2);
tempRow.addView(spinnerTemp);
tableLayout1.addView(tempRow);
}
}
break;
case R.id.button2:
if(count != 1){
count--;
tableLayout1.removeView(tableLayout1.getChildAt(count));
}
break;
case R.id.button3:
int calculation = 0;
double spinnerChoice = 0;
for(int i = 0; i < allEd.size(); i++) {
EditText totalUnits = allEd.get(i);
try {
int units = Integer.parseInt(totalUnits.getText().toString());
calculation += units;
}catch (Exception e) {
//ignore
}
for(int j = 0; j < allSp.size(); j++) {
Spinner gradeTotal = allSp.get(j);
try {
int grades = gradeTotal.getCount();
}catch (Exception e) {
//ignore
}
}
}
}
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
if (pos == 0){
//A+
gradeValue = 4.0;
} else if (pos == 1){
//A
gradeValue = 4.0;
} else if (pos == 2){
//A-
gradeValue = 3.7;
} else if (pos == 3){
//B+
gradeValue = 3.3;
} else if (pos == 4){
//B
gradeValue = 3.0;
} else if (pos == 5){
//B-
gradeValue = 2.7;
} else if (pos == 6){
//C+
gradeValue = 2.3;
} else if (pos == 7){
//C
gradeValue = 2.0;
} else if (pos == 8){
//C-
gradeValue = 1.7;
} else if (pos == 9){
//D+
gradeValue = 1.3;
} else if (pos == 10){
//D
gradeValue = 1.0;
} else if (pos == 11){
//D-
gradeValue = 0.7;
} else if (pos == 12){
//F
gradeValue = 0.0;
}
}
}
您可能想嘗試減少你的問題的代碼可能的最小量發佈之前。這很可能會得到積極的迴應。 –