Android |更改通知中显示的时间?

时间:2015-12-13 15:31:58

标签: android notifications

是否可以更改通知中显示的时间?通知中显示的时间始终是触发通知的时间。我可以设定自定义时间吗? :)希望有

1 个答案:

答案 0 :(得分:1)

使用setWhen(long when)设置时间戳。

Notification.Builder builder = new Notification.Builder(MainActivity.this);
builder.setTicker("title")
       .setSmallIcon(R.mipmap.ic_launcher)
       .setWhen(time_in_millis);
Notification notification = builder.build();
NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);