我在 if else 语句中有这段代码......我试图阻止 textview 值低于 0,但它仍然低于 0。
else if(iv1.getDrawable().getConstantState().equals(getResources().getDrawable(R.drawable.airplane2).getConstantState())){
int e =Integer.parseInt(textView5.getText().toString());
int f = e-1;
String s3 = String.valueOf(f);
textView5.setText(s3);
int dInt = Integer.parseInt(textView5.getText().toString());
if(dInt <= 0)
{
Toast.makeText(getApplicationContext(), "GameOver",Toast.LENGTH_SHORT).show();
}
}
PS对不起我的英语我已经减少了我的代码,但它仍然是负值