我使用构建器类创建通知并使用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());
代码有什么问题吗?提前谢谢