几分钟后自动清除推送通知

时间:2015-10-15 11:07:36

标签: android parse-platform push-notification

我已在我的应用中开发了解析推送通知。

我想要的现在推送通知应该自动从通知栏中清除,而不会在10分钟后点击它。是否可能?

3 个答案:

答案 0 :(得分:2)

可能会这样做,请做所需的更改

Handler handler = new Handler();
    handler.postDelayed(new Runnable() {
        @Override
        public void run() {
              String ns = Context.NOTIFICATION_SERVICE;
            NotificationManager nMgr = (NotificationManager) getApplicationContext().getSystemService(ns);
            nMgr.cancel(NOTIF_ID);
        }
    }, 600000);

答案 1 :(得分:2)

当然,实现任何等待的处理程序,并在删除通知后。

Here说明了如何删除通知。

答案 2 :(得分:0)

是的,这是可能的。使用Handler的{​​{3}}在10分钟后触发Notification postDelay