我一直在寻找我的通知没有显示在通知栏中的原因,似乎无法理解为什么不这样做..有没有人在这段代码中看到需要做的事情?
NotificationManager nm = (NotificationManager)
getSystemService(NOTIFICATION_SERVICE);
NotificationCompat.Builder notif = new NotificationCompat.Builder(DisplayNotification.this)
.setContentTitle("Due")
.setContentText("Do it fast!")
.setSmallIcon(R.drawable.book);
//---100ms delay, vibrate for 250ms, pause for 100 ms and
// then vibrate for 500ms---
notif.setVibrate(new long[] { 100, 250, 100, 500});
nm.notify(notifID, notif.build());
}