On Android 5.0 there is an option through Settings -> Sound & notification -> App notification -> Calendar (for example)
to go directly to the notification settings of the app.
I also know it's a flag in the manifest as described in this DEV.BYTES talk.
How can it be achieved, what is the flag used?
Here is a screenshot for more clarification:
You need to add the
Intent
categoryNotification.INTENT_CATEGORY_NOTIFICATION_PREFERENCES
to theActivity
you'd like to launch through yourAndroidManifest
. A simple example would be something like:For more information, refer to the Settings app and specifically the
NotificationAppList
andAppNotificationSettings
fragments.Results