特定の時間にユーザーに表示するためのアプリ内通知がありますが、アプリが終了しても何も表示されません。アプリケーションが閉じられたときにAlarmManagerが起動されない
設定アラーム:
Intent alarmIntent = new Intent(mMotherActivity, ReminderAlarmManager.class);
if (ReminderNotificationType.CHANGE_LENS.equals(notificationType)) {
alarmIntent.putExtra("NOTIFICATION_TYPE", "REMINDER");
} else {
alarmIntent.putExtra("NOTIFICATION_TYPE", "ORDER");
}
long scTime = alarmDate.getTime();
PendingIntent pendingIntent = PendingIntent.getBroadcast(mMotherActivity, 0, alarmIntent, 0);
AlarmManager alarmManager = (AlarmManager) mMotherActivity.getSystemService(mMotherActivity.ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, scTime, pendingIntent);
放送受信機:それはscTimeに来るとき
public class ReminderAlarmManager extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String notificationType = intent.getStringExtra("NOTIFICATION_TYPE");
if(notificationType.equalsIgnoreCase("ORDER"))
{
Intent i = new Intent(context, OrderReminderNotificationService.class);
context.startService(i);
}
else if(notificationType.equalsIgnoreCase("REMINDER"))
{
Intent i = new Intent(context, ReminderNotificationService.class);
context.startService(i);
}
}
}
ので、アプリケーションを閉じても、私は通知をトリガしたいと思います。
<receiver android:name="com.company.utils.ReminderAlarmManager">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
しかし、何も現れません...私が間違って何をやっている:
public class OrderReminderNotificationService extends IntentService {
public OrderReminderNotificationService(String name) {
super(name);
}
@Override
protected void onHandleIntent(Intent intent) {
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
Context context = getApplicationContext();
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
context);
Uri uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
mBuilder.setContentTitle("Notification");
mBuilder.setContentText(context.getString(R.string.renewOrderNotificationMsg));
mBuilder.setSmallIcon(R.mipmap.ic_launcher);
mBuilder.setSound(uri);
mBuilder.setAutoCancel(true);
Intent notificationIntent = new Intent(this, LoginActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(2, mBuilder.build());
}
ことに関するマニフェストの一部:だから、次のように私は、PendingIntentによるサービスを呼んでいますか?
あなたは 'BroadcastReceiver'からサービスを呼び出していますか? – Marat
完全なコードで投稿を編集しました。私はBroadCastreceiverを掲示し、AlarmManagerの設定を完了しました。私はそのようなBOOT_COMPLETEDのマニフェストで何かをしなければならないでしょうか? –
マニフェストファイルも必要です。私はあなたの 'broadcastReceiver'と' service'をマニフェストに登録しましたか? – Marat