I noticed that there are 2 different types of notification that appear at the top of the screen in android devices. One is “Ongoing” and the other is labeled “Notifications”. I would like to change my notification to the ongoing type. Some research revealed that I have to set a flag to: Notification.FLAG_ONGOING_EVENT. How would I do this in the following code and is there anything else I would have to do in order to change it to “ongoing” type?
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(AudioService.this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("My notification")
.setContentText("Hello World!");
// Creates an explicit intent for an Activity in your app
Intent resultIntent = new Intent(AudioService.this, MainActivity.class);
// The stack builder object will contain an artificial back stack for the
// started Activity.
// This ensures that navigating backward from the Activity leads out of
// your application to the Home screen.
TaskStackBuilder stackBuilder = TaskStackBuilder.create(AudioService.this);
// Adds the back stack for the Intent (but not the Intent itself)
stackBuilder.addParentStack(MainActivity.class);
// Adds the Intent that starts the Activity to the top of the stack
stackBuilder.addNextIntent(resultIntent);
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(
0,
PendingIntent.FLAG_UPDATE_CURRENT
);
mBuilder.setContentIntent(resultPendingIntent);
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// mId allows you to update the notification later on.
mNotificationManager.notify(mId, mBuilder.build());
The Builder has a “setOngoing” method.