web-dev-qa-db-fra.com

Comment vérifier si mon application est autorisée à afficher une notification

Dans les paramètres Android Android, les utilisateurs peuvent désactiver la notification s'ils ne le souhaitent pas. Existe-t-il une méthode qui, comme isNotificationAllowed() pour vérifier si mon application est autorisée à afficher la notification? Et comment ouvrir la page de configuration Android pour guider mes utilisateurs à activer la notification?

28
Yunpeng Lee

EDIT - Nouvelle réponse:

On dirait que Google a ajouté l'appel d'API approprié: NotificationManagerCompat.from(context).areNotificationsEnabled()


ANCIENNE RÉPONSE:

Pour quiconque regarde cette question, notez que NotificationListenerService est différent de "Afficher la notification". Ces deux choses sont différentes ! Si une application a accès à NotificationListenerService ne signifie pas que ses notifications sont affichées et vice versa. Afin de vérifier si l'utilisateur a bloqué ou non la notification de votre application, vous pouvez utiliser la réflexion:

public class NotificationsUtils {

private static final String CHECK_OP_NO_THROW = "checkOpNoThrow";
private static final String OP_POST_NOTIFICATION = "OP_POST_NOTIFICATION";

public static boolean isNotificationEnabled() {

    AppOpsManager mAppOps = (AppOpsManager) GlobalContext.getContext().getSystemService(Context.APP_OPS_SERVICE);

    ApplicationInfo appInfo = GlobalContext.getContext().getApplicationInfo();

    String pkg = GlobalContext.getContext().getApplicationContext().getPackageName();

    int uid = appInfo.uid;

    Class appOpsClass = null; /* Context.APP_OPS_MANAGER */

    try {

        appOpsClass = Class.forName(AppOpsManager.class.getName());

        Method checkOpNoThrowMethod = appOpsClass.getMethod(CHECK_OP_NO_THROW, Integer.TYPE, Integer.TYPE, String.class);

        Field opPostNotificationValue = appOpsClass.getDeclaredField(OP_POST_NOTIFICATION);
        int value = (int)opPostNotificationValue.get(Integer.class);

        return ((int)checkOpNoThrowMethod.invoke(mAppOps,value, uid, pkg) == AppOpsManager.MODE_ALLOWED);

    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    } catch (NoSuchMethodException e) {
        e.printStackTrace();
    } catch (NoSuchFieldException e) {
        e.printStackTrace();
    } catch (InvocationTargetException e) {
        e.printStackTrace();
    } catch (IllegalAccessException e) {
        e.printStackTrace();
    }
    return false;
}
}

Source: https://code.google.com/p/Android/issues/detail?id=38482

64
Kasra
NotificationManagerCompat.from(context).areNotificationsEnabled()

semble être un chemin à parcourir.

39
asamoylenko
if(NotificationManagerCompat.from(context).areNotificationsEnabled())
{
 //Do your Work
}
else
{
     //Ask for permission
}
0
Ravichandra S V