我想使用if更改結果類中的圖像,但我不知道如何顯示result.getText中的圖像。從1到100if result from result EditText
結果解決
CalculatorValue cv = new CalculatorValue();
String calculationVal= cv.calculationVal(num1+ "compare" + num2);
Result.setText(calculationVal+ " %");
if (result < 10){
img.setBackgroundResource(R.drawable.ic_110);
}
你能好心幫我給我的例子在這種情況下
謝謝
的代碼是不工作
if (result < 10){
// your code
}
if (result >10 && result <15){
// your code
}
else
我創建Calculation.class和我把語句如果在MainActivity.class
驗證碼:
CalculatorValue cv = new CalculatorValue();
String calculationVal= cv.calculationVal(num1+ "compare" + num2);
Result.setText(calculationVal+ " %");
if (result < 10){
img.setBackgroundResource(R.drawable.ic_110);
}
操作<未定義的參數類型字符串,整數
你應該閱讀的基本... –