通知用に次のコードがあります。
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);
}
上記のコードは、最小 Sdk 16 でのみ機能します。16 未満のバージョンでこれをコーディングするにはどうすればよいですか? まったく別のコードを書く必要がありますか? 私は何をしますか?