我正在尝试展示notification
,但它可以完美地工作Jelly Bean
,但Ginger Bread
它不起作用。没有错误/问题。我只想取消notification
单击它。
最低 API 级别为 10。
这是代码。
NotificationManager notifyManager = (NotificationManager) context
.getSystemService(Context.NOTIFICATION_SERVICE);
NotificationCompat.Builder notification = new NotificationCompat.Builder(
context);
notification.setSmallIcon(R.drawable.ic_launcher);
notification.setContentTitle("Alarm");
notification.setContentText("Wake up!!");
notification.setVibrate(new long[] { 500 });
notification.setWhen(System.currentTimeMillis());
notification.setAutoCancel(true);
Notification notif = notification.build();
notifyManager.notify(1, notif);
任何帮助,将不胜感激。