1

アプリが破棄されてから 4 時間後に表示される通知を設定しました。

しかし、私はアプリを破壊しているので、通知はすぐに届き、4 時間後にも届きます。

これが私のメイン アクティビティの onDestroy() です。

@Override
    public void onDestroy() {
        super.onDestroy();


        Intent myIntent = new Intent(this, AlarmReceiver.class);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, myIntent,0);

        AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
        //alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);
        alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, 3600*1000*4, 3600*1000*4, pendingIntent);
    }

ここに私のAlarmReceiver.classがあります:

public class AlarmReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        Intent mainIntent = new Intent(context, Main.class);

        NotificationManager notificationManager
            = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

        android.app.Notification noti = new NotificationCompat.Builder(context)
            .setAutoCancel(true)
            .setContentIntent(PendingIntent.getActivity(context, 0, mainIntent,
                              PendingIntent.FLAG_UPDATE_CURRENT))
            .setContentTitle("Title")
            .setContentText("It's been so Long!!!")
            .setSubText("Please return back to App & Learn more Duas.")
            .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
            .setVibrate(new long[] {700,700,700,700})
            .setSmallIcon(R.drawable.ic_launcher)
            .setTicker("Important Notification")
            .setWhen(System.currentTimeMillis())
            .build();

        notificationManager.notify(0, noti);
    }

}

アプリが破棄された直後ではなく、4時間ごとに通知を表示する必要があります。

どんな助けでも大歓迎です。

前もって感謝します。

4

1 に答える 1

1

些細なミスだから

この行を変更するだけです

alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, 3600*1000*4, 3600*1000*4, pendingIntent);

これに

alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, (System.currentTimeMillis()+(3600*1000*4)), 3600*1000*4, pendingIntent);
于 2014-07-26T10:09:29.567 に答える