Notification.Builder builder = new Notification.Builder(this);
builder.setContentIntent(contentIntent)
.setSmallIcon(R.drawable.ic_launcher)
.setTicker(notificationMessage)
.setWhen(System.currentTimeMillis())
.setAutoCancel(true)
.setContentTitle(newNotificationsCount + " New Notifications")
.setContentText(notificationMessage);
Notification notification = builder.getNotification();
nm.notify(R.string.app_name, notification);
这给出了错误:
调用需要 API 级别 11(当前最低为 10):android.app.Notification$Builder#setContentIntent
我下载了android.support.v4.jar将其添加到与src和res等目录相同的 libs 文件夹中。
从项目资源管理器中右键单击此 jar 并添加到构建路径。
我的应用程序有一个min api = 10和target api = 15
谢谢