08-28 NoClassDefFoundError NotificationBuilder

时间:2012-08-28 08:54:00

标签: android dialog android-widget

我使用构建器类创建通知并使用android 4.1版本(API级别16)。 但该应用程序正在生成异常 08-28 12:39:00.321: E/AndroidRuntime(2311): java.lang.NoClassDefFoundError: android.app.Notification$Builder 必要的软件包已经导入。

Notification.Builder notification = new Notification.Builder(this);
notification.setSmallIcon(R.drawable.ic_launcher);
notification.setTicker("My Notification");
notification.setContentInfo("New event");
mgr.notify(123, notification.build());

代码有什么问题吗?提前谢谢

1 个答案:

答案 0 :(得分:4)

您需要在API级别> = 11的设备/模拟器上运行您的应用程序才能使用Notification.Builder类。