检查日历但不起作用

时间:2013-02-25 06:59:11

标签: android

我尝试检查日历,当每个月的第一天evey将自动发送数据但问题代码不起作用。

Calendar c = Calendar.getInstance();
if (Calendar.DAY_OF_MONTH == 25){
sendMessage("L100000000");}

1 个答案:

答案 0 :(得分:4)

我认为你需要这个

Calendar cal = Calendar.getInstance();
int dayOfMonth = cal.get(Calendar.DAY_OF_MONTH);

if (dayOfMonth == 25){
    sendMessage("L100000000");
}