0

我尝试让我的通知(来自服务)每五分钟更新或刷新一次。我怎样才能做到这一点?这就是我要更新的内容。

if (...){

            int icon = R.drawable.updatedImage1;
            long when = System.currentTimeMillis();
            NotificationManager notificationManager = (NotificationManager) this
            .getSystemService(Context.NOTIFICATION_SERVICE);
            CharSequence message = "II Tydzień";        
            Notification notification = new Notification(icon, message, when );
            String title = this.getString(R.string.app_name); // Here you can pass the value of your TextView
            Intent notificationIntent = new Intent(this, MainActivity.class);
            notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP );
            PendingIntent intent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
            notification.setLatestEventInfo(this, title, message, intent);
            notification.flags |= Notification.FLAG_NO_CLEAR;
            notificationManager.notify(0, notification);  

} else { ...other notification }

条件是一段时间,所以我需要根据时间更改通知。

4

1 回答 1

0

您可以使用AlarmManager以不同的时间间隔重复安排通知。文档提到:

此类提供对系统警报服务的访问。这些允许您安排您的应用程序在将来的某个时间点运行。当警报响起时,系统会广播已为其注册的 Intent,如果目标应用程序尚未运行,则会自动启动它

您可能可以使用setRepeating功能来达到您的目的。

于 2013-11-11T18:30:38.133 回答