我有以下通知代码。
public void sendBasicNotification(View view) {
Notification notification = new Notification.Builder(this)
.setContentTitle("Basic Notification")
.setContentText("Basic Notification, used earlier")
.setSmallIcon(R.drawable.ic_launcher_share).build();
notification.flags |= Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = getNotificationManager();
notificationManager.notify(0, notification);
}
上面的代码仅适用于 min Sdk 16。我如何为低于 16 的版本编写代码?我应该完全编写不同的代码吗?我该怎么办?