次のコードがあります。
View.OnClickListener calcu = new View.OnClickListener() {
public void onClick(View v) {
double q;
String d = "";
double factor = cpi[to] / cpi [from];
DecimalFormat decimalFormat = new DecimalFormat("0.##");
if (eNum.getText().toString().length() <= 0 || bFrom.getText() == "- Select a Year -" || bTo.getText() == "- Select a Year -") {
if (eNum.getText().toString().length() <= 0) {
d += "Enter Dollar Amount";
eNum.setTextColor(Color.RED);
}
if (bFrom.getText() == "- Select a Year -") {
d += "Select a Year";
bFrom.setTextColor(Color.RED);
}
if (bTo.getText() == "- Select a Year -") {
d += "Select a Year";
bTo.setTextColor(Color.RED);
}
}
else {
dollarAmount = factor * Double.parseDouble(eNum.getText().toString());
String value = Double.toString(dollarAmount);
if (value.charAt(value.length() - 2) == '.') {
value += "0";
}
displayToast("Dollar: " + value);
if (cpi[to] != cpi[from]) {
double f, y;
if (cpi[to] > cpi[from]) {
f = cpi[to] / cpi [from];
y = to - from;
}
else {
f = cpi[from] / cpi[to];
y = from - to;
}
q = Math.pow(f, 1/y);
q = (q-1)*100.0;
q = Math.round(q*100.0)/100.0;
displayToast("Inflation: " + String.valueOf(decimalFormat.format(q)));
}
}
}
};
displayToast()
ユーザーにトーストメッセージを表示する機能です。
eNum
ですEditText
bFrom
そしてbTo
_Buttons
onClick メソッドがアクティブになったときに私がしたいこと:
- が空の場合
eNum
、テキストの色を赤にしたいと思います。 bFrom
とbTo
ボタンのテキストがの場合- Select a Year -
、テキストの色を赤にしたいと思います。- #1 と #2 が当てはまらない場合は、トーストを表示します。
今クリックしても何も起きません。上記のコードが正しく動作するように修正するにはどうすればよいですか?