14

我在 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");


}
4

2 回答 2

1

您应该使用不同的通知 ID,如下所示您使用的代码

mNotificationManager.notify(i, notification);

也增加你的时间

 Notification notification = new Notification(icon, contentTitle, when);
于 2013-12-12T11:20:48.507 回答
0

使用 ScheduledExecutorService。这通常会产生更好的结果。

它意味着每隔几分钟在后台重复操作。从延迟开始等等。查看:http: //developer.android.com/reference/java/util/concurrent/ScheduledExecutorService.html

这是一个类,其方法将 ScheduledExecutorService 设置为每隔十秒发出哔声,持续一小时:

import static java.util.concurrent.TimeUnit.*;
class BeeperControl {
private final ScheduledExecutorService scheduler =
 Executors.newScheduledThreadPool(1);

public void beepForAnHour() {
 final Runnable beeper = new Runnable() {
   public void run() { System.out.println("beep"); 
 };
 final ScheduledFuture beeperHandle =
   scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);
 scheduler.schedule(new Runnable() {
   public void run() { beeperHandle.cancel(true); }
 }, 60 * 60, SECONDS);
}
}}
于 2012-09-25T08:15:02.407 回答