如果TextView不等于“某事”

时间:2014-07-04 20:52:20

标签: android if-statement

如何使用if进行TextView声明,其中包含除

之外的任何文字

month_name + " " + today + ", " + thisYear

这是我的代码无法正常工作的一部分:

int today = calendar.get(Calendar.DAY_OF_MONTH);
datum2.setText(month_name + " " + today + ", " + thisYear);    
if(today == 1 & datum.getText().toString() != (month_name + " " + today + ", " + thisYear))
    {
        hiddenBonus.setText("0");
        hiddenCelkovo.setText("0");
    }

谢谢。

1 个答案:

答案 0 :(得分:1)

你必须使用equals-方法:

if(today == 1 && !datum.getText().equals(month_name + " " + today + ", " + thisYear)){