INNER CODE UNIT · Java
notification
UnevenSoftware/LeafPic · app/src/main/java/org/horaapps/leafpic/LookForMediaJob.java:59
private void notification(ArrayList<String> list) {
StringBuilder builder = new StringBuilder();
for (String s : list)
builder.append(s).append("\n");
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("Looked for media")
.setAutoCancel(true)
.setContentText(builder.toString()); //Required on Gingerbread and below
NotificationManager notificationManager =
(NotificationManager) getSystemService(Service.NOTIFICATION_SERVICE);
Notification notification = mBuilder.build();