我正在尝试在一年中的某一天发生时显示通知。我似乎无法弄清楚如何获得Android。如何让Android在这个应用程序上每天检查?
cal = Calendar.getInstance();
dayOfYear = cal.get(Calendar.DAY_OF_YEAR);
payDays = new int[12];
payDays[0] = 60;
payDays[1] = 88;
payDays[2] = 123;
payDays[3] = 151;...
// Checks when to send the notification
if (dayOfYear == payDays[0] ||
dayOfYear == payDays[1] ||
dayOfYear == payDays[2] ||
dayOfYear == payDays[3] ||
{
Builder builder = new Notification.Builder(this)
.setContentTitle("Phone Commission")
.setContentText("Expand for totals")
.setSmallIcon(R.drawable.notify2);
Notification notification = new Notification.BigTextStyle(builder)
.bigText("Add-a-Line: " + AALNote +
"\nUpgrades: " + UPGNote +
"\nNew Lines: " + NLNote +
"\nYour total commission is: " + "$" + totalNote).build();
NotificationManager notify = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notify.notify(0, notification);
}
答案 0 :(得分:0)
您需要设置闹钟。你不能在Activity中做这样的事情。您应该在服务中设置该警报,因为在Activity中执行此操作会在Activity完成后使其丢失。