是否可以更改通知中显示的时间?通知中显示的时间始终是触发通知的时间。我可以设定自定义时间吗? :)希望有
答案 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);