简体   繁体   English

本地通知不重复

[英]local notification not repeating

I need to show notification for completing registration to user in every 2 hrs , I have set it to few mins for testing , but my notification comes only once it never come again . 我需要向用户显示每2小时完成一次注册的通知,我将其设置为几分钟,以便进行测试,但是我的通知只有在不再发送时才会出现。 Please suggest. 请提出建议。

My code for repeating task : 我的重复任务代码:

public void createNotification() {
    Intent notificationIntent = new Intent(context, ShowNotification.class);
    PendingIntent contentIntent = PendingIntent.getService(context, 0, notificationIntent,
            PendingIntent.FLAG_UPDATE_CURRENT);

    AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
    //  am.cancel(contentIntent);

    Calendar calendar = Calendar.getInstance();
    calendar.setTimeInMillis(System.currentTimeMillis());
    calendar.add(Calendar.SECOND, 60); // first time
    long frequency= 60 * 1000; // in ms

    am.setRepeating(AlarmManager.RTC,  calendar.getTimeInMillis(), frequency, contentIntent);


}

My Code in service : 我的服务代码:

public class ShowNotification extends Service {

private final static String TAG = "ShowNotification";

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

   Intent mainIntent = new Intent(this, DashBoardActivity.class);

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

    Notification noti = new NotificationCompat.Builder(this)
            .setAutoCancel(true)
            .setContentIntent(PendingIntent.getActivity(this, 0, mainIntent,
                    PendingIntent.FLAG_UPDATE_CURRENT))
            .setContentTitle("HELLO " + System.currentTimeMillis())
            .setContentText("Please complete all the steps for registration")
            .setDefaults(Notification.DEFAULT_ALL)
            .setSmallIcon(R.drawable.ic_launcher)
            .setTicker("ticker message")
            .setWhen(System.currentTimeMillis())
            .build();

    notificationManager.notify((int) System.currentTimeMillis(), noti);
   // ToastUtil.displayToast(this , "my msg");
    Log.i(TAG, "Notification created");
}

@Override
public IBinder onBind(Intent intent) {
    // TODO Auto-generated method stub
    return null;
}

} }

You need to override onStartCommand of Service and Move your code of onCreate there. 您需要重写Service的onStartCommand并将onCreate的代码onStartCommand那里。 Like below 像下面

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    // And move all codes of onCreate here


Intent mainIntent = new Intent(this, DashBoardActivity.class);

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

Notification noti = new NotificationCompat.Builder(this)
        .setAutoCancel(true)
        .setContentIntent(PendingIntent.getActivity(this, 0, mainIntent,
                PendingIntent.FLAG_UPDATE_CURRENT))
        .setContentTitle("HELLO " + System.currentTimeMillis())
        .setContentText("Please complete all the steps for registration")
        .setDefaults(Notification.DEFAULT_ALL)
        .setSmallIcon(R.drawable.ic_launcher)
        .setTicker("ticker message")
        .setWhen(System.currentTimeMillis())
        .build();

notificationManager.notify((int) System.currentTimeMillis(), noti);
// ToastUtil.displayToast(this , "my msg");
Log.i(TAG, "Notification created");



    // We want this service to continue running until it is explicitly
    // stopped, so return sticky.
    return START_STICKY;
}

Read more about lifecycle of Service . 阅读有关服务生命周期的更多信息。

PendingIntent contentIntent = PendingIntent.getService(DashBoardActivity.this, 0, notificationIntent,
            PendingIntent.FLAG_UPDATE_CURRENT);

instead try using 而是尝试使用

 Intent notificationIntent = new Intent(mContext, Service.class);
 notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
 PendingIntent contentIntent = PendingIntent.getService(myContext, 0, notificationIntent, 0);
if (!isMyServiceRunning(trachservice.class)) {
                Intent intents = new Intent(this, trachservice.class);
            PendingIntent pendingIntent = PendingIntent.getService(this, 12345,
                    intents, PendingIntent.FLAG_CANCEL_CURRENT);
            AlarmManager am = (AlarmManager) this
                    .getSystemService(Activity.ALARM_SERVICE);
            try {
                // am.cancel(pendingIntent);
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            am.setRepeating(AlarmManager.ELAPSED_REALTIME,
                    SystemClock.elapsedRealtime(), 300000, pendingIntent);
        } else {

            Intent intents = new Intent(this, trachservice.class);
            this.stopService(intents);

            PendingIntent pendingIntent = PendingIntent.getService(this, 12345,
                    intents, PendingIntent.FLAG_CANCEL_CURRENT);
            AlarmManager am = (AlarmManager) this
                    .getSystemService(Activity.ALARM_SERVICE);
            try {
                // am.cancel(pendingIntent);
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            am.setRepeating(AlarmManager.ELAPSED_REALTIME,
                    SystemClock.elapsedRealtime(), 300000, pendingIntent);
        }

Write a Service put Your Notification Code under .. if you want to use in your Activity Your can also call Handler of Your Class

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM