1

我正在尝试展示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);

任何帮助,将不胜感激。

4

1 回答 1

1

我有一个 API 级别检查,并为比 Jelly Bean 更少的东西做一些不同的事情:

如果(果冻豆或更高())
{
///果冻豆
}
别的
{  
    NotificationCompat2.Builder mBuilder = new NotificationCompat2.Builder(this.context)
            ...........
}

这可能会为您解决。我花了很长时间才设置通知,所以这对我有用。

于 2013-03-12T20:18:08.303 回答