create Start Notification Setting Intent - Android Android OS

Android examples for Android OS:Notification Create

Description

create Start Notification Setting Intent

Demo Code


//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*/
}

Related Tutorials