Расписание уведомлений на понедельник каждой недели в Android - PullRequest
0 голосов
/ 05 июля 2018

Хотите запланировать уведомление, которое будет отправлено в 11:00 каждого понедельника недели. Я использую диспетчер заданий Firebase для этого. Вот фрагмент кода, который я реализовал, но это не работает.

    Calendar currentDate = Calendar.getInstance();
    while (currentDate.get(Calendar.DAY_OF_WEEK) != Calendar.MONDAY) {
        currentDate.add(Calendar.DATE, 1);
    }
    currentDate.set(Calendar.HOUR_OF_DAY, 11);
    currentDate.set(Calendar.MINUTE, 0);
    currentDate.set(Calendar.SECOND, 0);
    currentDate.set(Calendar.MILLISECOND, 0);
    FirebaseJobDispatcher dispatcher = new FirebaseJobDispatcher(new GooglePlayDriver(SplashScreen.this));

    Job myJob = dispatcher.newJobBuilder()
            .setService(ScheduledNotificationService.class)
            .setTag(dispatcherTag)
            .setRecurring(true)
            .setLifetime(Lifetime.FOREVER)
            .setTrigger(Trigger.executionWindow(Math.round(currentDate.getTime().getTime() / 1000), Math.round(currentDate.getTime().getTime() / 1000) + 60))
            .setReplaceCurrent(false)
            .setRetryStrategy(RetryStrategy.DEFAULT_EXPONENTIAL)
            .build();

    dispatcher.mustSchedule(myJob);

ScheduledNotificationService.class расширяет jobservice, но onStartJob никогда не вызывается.

Что здесь может быть не так?

Есть ли лучший / правильный подход, кроме использования диспетчера заданий Firebase?

1 Ответ

0 голосов
/ 14 марта 2019

FirebaseJobDispatcher действительно не помог, поэтому я использовал AlarmManager, и он работает как шарм. Вот как я этого добился,

    Calendar currentDate = Calendar.getInstance();
    while (currentDate.get(Calendar.DAY_OF_WEEK) != Calendar.MONDAY) {
        currentDate.add(Calendar.DATE, 1);
    }
    currentDate.set(Calendar.HOUR_OF_DAY, hour);
    currentDate.set(Calendar.MINUTE, minute);
    currentDate.set(Calendar.SECOND, 0);
    currentDate.set(Calendar.MILLISECOND, 0);

    Intent intent = new Intent(mContext, AlarmReceiver.class);
    intent.putExtra("extra info", "if needed");
    PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, RequestCode, intent, 0);
    AlarmManager am = (AlarmManager) mContext.getSystemService(ALARM_SERVICE);
    am.setRepeating(am.RTC_WAKEUP, currentDate.getTimeInMillis(), am.INTERVAL_DAY * 7, pendingIntent);

Класс AlarmReceiver для выполнения любого действия

 public class AlarmReceiver extends BroadcastReceiver {

    private Context mContext;

    @Override
    public void onReceive(Context context, Intent data) {
        mContext = context;
        //YOUR STUFF 
    }
}

Это расписание перестает работать после перезагрузки устройства пользователем. Не забудьте установить это снова после перезагрузки. Для этого добавьте это в AndroidManifest и снова запланируйте тревогу.

    <receiver
        android:name=".AlarmManager.AlarmBootReceiver"
        android:enabled="true"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>

Снова запланируйте тревоги в классе AlarmBootReceiver.

...