0

我的应用程序中有一个前台服务,它在通知中有一个动态更新的文本,我可以通过使用该服务来更新它

    startForeground(Constants.FOREGROUND_ID, buildForegroundNotification());
}

private Notification buildForegroundNotification() {
    NotificationCompat.Builder b = new NotificationCompat.Builder(this);
    b.setOngoing(true);
    b.setContentIntent(getPendingIntent(this));
    b.setContentTitle(getString(R.string.app_name));
    b.setContentText(getString(R.string.time) + " " + number);
    b.setSmallIcon(R.drawable.ic_launcher);
    return b.build();
}

但我也希望能够从 Activity 更新它,如何在不重新启动服务的情况下做到这一点?

4

1 回答 1

1

您可以使用这种方法

final Notification notification = buildForegroundNotification();
final NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(Constants.FOREGROUND_ID, notification);
于 2014-10-08T15:08:19.960 回答