Notification notification = new Notification.Builder(this) .setContentTitle("This is title") .setContentText("This is content") .setSmallIcon(R.mipmap.ic_launcher) // .setLargeIcon(aBitmap) .build(); startForeground(1, notification);
Notification notification = new Notification.Builder(this) .setContentTitle("This is title") .setContentText("This is content") .setSmallIcon(R.mipmap.ic_launcher) // .setLargeIcon(aBitmap) .build(); startForeground(1, notification);