我有它設置一個AlarmManager
服務,如下所示:報警管理不火廣播
private void setupInsuranceNotification(@NonNull String plate, @NonNull LocalDate insuranceDeadline)
{
LocalDate now = LocalDate.now();
int daysToDeadline = getDaysBetweenDates(now, insuranceDeadline);
String notificationTitle = "Assicurazione " + plate;
String notificationMessage;
int millsBetweenNotifications = 1000 * 60 * 60 * 24; // 1 day default
LocalDate notificationStart = now;
if (daysToDeadline > 0)
{
notificationMessage = daysToDeadline + " giorni alla scadenza.";
if (daysToDeadline > 30)
{
// show the notification only when they are 30 days left
notificationStart = now.withFieldAdded(DurationFieldType.days(), daysToDeadline - 30);
}
}
else if (daysToDeadline == 0)
{
notificationMessage = "Assicurazione scaduta oggi.";
}
else
{
if (daysToDeadline >= -15)
{
// tolerance period
notificationMessage = Math.abs(daysToDeadline) + " alla fine del periodo di tolleranza!";
millsBetweenNotifications = 1000 * 60 * 60 * 6; // 6 hours
}
else
{
// insurance expired
notificationMessage = "Periodo di tolleranza finito! L'assicurazione è scaduta!";
millsBetweenNotifications = 1000 * 60 * 60; // 1 hour
}
}
Intent notificationIntent = new Intent(this, NotificationPublisher.class);
notificationIntent.putExtra("notification_title", notificationTitle);
notificationIntent.putExtra("notification_message", notificationMessage);
PendingIntent alarmIntent = PendingIntent.getBroadcast(this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, notificationStart.toDate().getTime(), millsBetweenNotifications, alarmIntent);
}
這是我NotificationPublisher
類:
public class NotificationPublisher extends BroadcastReceiver
{
private static final int NOTIFICATION_ID = 1;
@Override
public void onReceive(Context context, Intent intent)
{
String title = intent.getStringExtra("notification_title");
String message = intent.getStringExtra("notification_message");
Notification.Builder builder = new Notification.Builder(context);
NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
builder.setContentTitle(title);
builder.setContentText(message);
builder.setSmallIcon(R.drawable.ic_notification);
manager.notify(NOTIFICATION_ID, builder.build());
}
}
我的問題是,setupInsuranceNotification
是正確執行,直到最後(沒有任何例外),但我的NotificationPublisher
永遠不會被解僱(我把一個斷點檢查)。
編輯
這是我從onHandleIntent
類NotificationService
:
@Override
protected void onHandleIntent(@Nullable Intent intent)
{
Debug.waitForDebugger();
if (Utilities.vehicleFileExists(this))
{
try
{
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(Utilities.getVehicleListFile(this));
Element root = doc.getDocumentElement();
root.normalize();
NodeList vehicleNodeList = root.getElementsByTagName("vehicle");
for (int i = 0; i < vehicleNodeList.getLength(); i++)
{
Element vehicleElement = (Element) vehicleNodeList.item(i);
Element matriculationDateElement = (Element) vehicleElement.getFirstChild();
Element endInsuranceDateElement = (Element) matriculationDateElement.getNextSibling();
Element lastInspectionDateElement = (Element) endInsuranceDateElement.getNextSibling();
String plate = vehicleElement.getAttribute("plate");
LocalDate matriculationDate = LocalDate.parse(matriculationDateElement.getFirstChild().getNodeValue(), DateTimeFormat.forPattern(Utilities.Formats.Date.ITALIAN));
LocalDate endInsuranceDate = LocalDate.parse(endInsuranceDateElement.getFirstChild().getNodeValue(), DateTimeFormat.forPattern(Utilities.Formats.Date.ITALIAN));
LocalDate lastInspectionDate = null;
if (lastInspectionDateElement.getFirstChild() != null) // <inspection_dates/>
{
lastInspectionDate = LocalDate.parse(lastInspectionDateElement.getFirstChild().getNodeValue(), DateTimeFormat.forPattern(Utilities.Formats.Date.ITALIAN));
}
LocalDate inspectionDeadline = getInspectionDeadline(matriculationDate, lastInspectionDate);
setupInsuranceNotification(plate, endInsuranceDate);
setupInspectionNotification(plate, inspectionDeadline);
}
}
catch (ParserConfigurationException | SAXException | IOException ignored) {}
}
}
你registerd清單中的接收器? – MatPag
@MatPag yes:' ' –
Clyky
你應該嘗試用這個[這裏]替換你的AlarmManager代碼(https://stackoverflow.com/a/31838628/) 2910520)並查看它是否有效。通過這種方式,我們可以肯定地說,問題是你的代碼的Intent或AlarmManager,而不是別的 – MatPag