Android examples for Android OS:Notification Create
create Start Notification Setting Intent
//package com.java2s; import android.content.Intent; public class Main { private static final String ACTION_NOTIFICATION_LISTENER_SETTINGS = "android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS"; public static Intent createStartNotificationSettingIntent() { Intent intent = new Intent(ACTION_NOTIFICATION_LISTENER_SETTINGS); return intent; }/*from w ww . j a v a2 s . com*/ }