0

このトピックに関するいくつかの質問を読みましたが、まだわかりません。

毎日同じ時間に通知を表示する必要があります。私はAlarmManagerを使用しています。よく書かれているように見えますが、実際にはアラームが届きません。SyncAlarmReceiver が onReceive() を呼び出すことはありません。

アラームを設定するコードは次のとおりです。

private static final int ORA_NOTIFICA = 14;   //Hour for the notification
private static final int MINUTO_NOTIFICA = 35;  //Minutes for the notification
private static final int ID_NOTIFICA_SYNC = 33;  //Notification's ID

public static void setSyncAlarm(Context ctx) {
    Calendar calendar = Calendar.getInstance();

    calendar.set(Calendar.HOUR_OF_DAY, ORA_NOTIFICA);
    calendar.set(Calendar.MINUTE, MINUTO_NOTIFICA);
    AlarmManager am = (AlarmManager) ctx
            .getSystemService(Context.ALARM_SERVICE);
    am.setRepeating(AlarmManager.ELAPSED_REALTIME, calendar.getTimeInMillis(),
            AlarmManager.INTERVAL_DAY, getPendingIntentSync(ctx));
    Log.d("NOTIFICA SYNC", "Alarm set at " + ORA_NOTIFICA + ":"
            + MINUTO_NOTIFICA);
}


public static PendingIntent getPendingIntentSync(Context ctx) {
    return PendingIntent.getBroadcast(ctx, 0, new Intent(ctx,
            SyncAlarmReceiver.class), PendingIntent.FLAG_UPDATE_CURRENT);
}

SyncAlarmReceiver は次のとおりです。

public class SyncAlarmReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
    Log.d("NOTIFICA SYNC", "Alert Ricevuto");
    PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
    PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "");
    wl.acquire();

    NotificationUtils.createNotifSync(context);

    wl.release();
}

}

そして最後に createNotifSync:

public static void creaNotificaSync(Context ctx) {
    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
            ctx).setSmallIcon(R.drawable.action_bar_icon)
            .setContentTitle(ctx.getString(R.string.sync_notif_titolo))
            .setContentText(ctx.getString(R.string.sync_notif_testo))
            .setAutoCancel(true);

    Intent resultIntent = new Intent(ctx, ActTestJson.class);

    TaskStackBuilder stackBuilder = TaskStackBuilder.create(ctx);
    stackBuilder.addParentStack(ActTestJson.class);
    stackBuilder.addNextIntent(resultIntent);
    PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0,
            PendingIntent.FLAG_UPDATE_CURRENT);
    mBuilder.setContentIntent(resultPendingIntent);
    NotificationManager mNotificationManager = (NotificationManager) ctx
            .getSystemService(Context.NOTIFICATION_SERVICE);
    mNotificationManager.notify(ID_NOTIFICA_SYNC, mBuilder.build());
}

また、マニフェストのスニペット:

 <receiver
        android:name="com.mypackage.SyncAlarmReceiver"
        android:enabled="true" >
    </receiver>

編集: これは、dumsys アラームで findstr を使用して見つけたものです

adb shell dumpsys alarm | findstr /C:com.mypackage

RTC_WAKEUP #33: Alarm{42bd9470 type 0 com.mypackage} operation=PendingIntent{429d3238: PendingIntentRecord42fe80a0 com.mypackage startService}}

ELAPSED #12: Alarm{42b4fcc8 type 3 com.mypackage} operation=PendingIntent{42914e20: PendingIntentRecord{42a2a198 com.mypackage broadcastIntent}}

com.contram.unicam.controllori +15ms running, 6 wakeups: +15ms 6 wakes 6 alarms: cmp={com.mypackage/com.mypackage.utils.SyncAlarmReceiver}

RTC_WAKEUP と ELAPSED がここにあるのは、両方の方法を試したからです (違いがよくわかりません)。

編集:私は時間を設定するために使用されるカレンダーを読んでみました.これはそのtoString()から出てくるものです:

java.util.GregorianCalendar[time=1386194671008,areFieldsSet=true,lenient=true,
zone=Europe/Rome,firstDayOfWeek=2,minimalDaysInFirstWeek=4,ERA=1,YEAR=2013,MONTH=11,
WEEK_OF_YEAR=49,WEEK_OF_MONTH=2,DAY_OF_MONTH=4,DAY_OF_YEAR=338,DAY_OF_WEEK=4,
DAY_OF_WEEK_IN_MONTH=1,AM_PM=1,HOUR=11,HOUR_OF_DAY=23,MINUTE=4,SECOND=31,MILLISECOND=8,
ZONE_OFFSET=3600000,DST_OFFSET=0]

オンラインのミリ秒から時間へのコンバーターを使用すると、時間パラメーターは Wed Apr 08 2409 06:45:10 GMT+0200 (西ヨーロッパ夏時間) に変換されます。

時刻合わせは何を使えばいいですか?

4

1 に答える 1

0

問題は ELAPSED_TIME にありました:

am.setRepeating(AlarmManager.ELAPSED_REALTIME, calendar.getTimeInMillis(),
        AlarmManager.INTERVAL_DAY, getPendingIntentSync(ctx));

RTCに変更したところ、うまくいきました。

于 2013-12-04T22:40:59.570 に答える