3

我正在使用构建器类并使用 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());

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

4

1 回答 1

4

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

于 2012-08-28T09:35:45.257 回答