我在 10 秒间隔的状态栏通知中有问题。我已经通过创建插件完成了一次显示它的代码。但我想每隔 10 分钟显示一次。所以我用来AlarmManager
每 10 分钟生成一次通知.但它不调用类onReceive(Context ctx, Intent intent)
的方法FirstQuoteAlarm
。我有以下用于显示通知的代码和AlarmManager
.
public void showNotification( CharSequence contentTitle, CharSequence contentText ) {
int icon = R.drawable.nofication;
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, contentTitle, when);
Intent notificationIntent = new Intent(ctx, ctx.getClass());
PendingIntent contentIntent = PendingIntent.getActivity(ctx, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
mNotificationManager.notify(1, notification);
Date dt = new Date();
Date newdate = new Date(dt.getYear(), dt.getMonth(), dt.getDate(),10,14,dt.getSeconds());
long triggerAtTime = newdate.getTime();
long repeat_alarm_every = 1000;
QuotesSetting.ON = 1;
AlarmManager am = ( AlarmManager ) ctx.getSystemService(Context.ALARM_SERVICE );
//Intent intent = new Intent( "REFRESH_ALARM" );
Intent intent1 = new Intent(ctx,FirstQuoteAlarm.class);
PendingIntent pi = PendingIntent.getBroadcast(ctx, 0, intent1, 0 );
am.setRepeating(AlarmManager.RTC_WAKEUP, triggerAtTime, repeat_alarm_every, pi);
Log.i("call2","msg");
}