我正在尝试在一年中的某一天发生时发出通知。我似乎无法弄清楚如何获得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);
}