102

Android 4.1 では、特定のアプリケーションの通知を無効にするチェック ボックスがユーザーに提供されます。

ただし、開発者として、notify の呼び出しが有効であったかどうかを知る方法はありません。

現在のアプリケーションで通知が無効になっているかどうかを確認する必要がありますが、API でその設定が見つかりません。

コードでこの設定を確認する方法はありますか?

4

6 に答える 6

153

100%できません。

このGoogleI/ O 2012ビデオで質問され、新しい通知のプロジェクトリーダーは、できないと宣言しています。


編集

2016年の更新:このGoogle I / O 2016ビデオで述べられているように、これを確認できます。

サポートライブラリのを使用NotificationManagerCompat.areNotificationsEnabled()して、API19以降で通知がブロックされているかどうかを確認します。API 19より前のバージョンはtrueを返します(通知が有効になっています)。

ここに画像の説明を入力してください

于 2012-07-25T12:25:15.523 に答える
46

@blundell からの回答は正しいですが、新しいバージョンではマイナーな変更があります。

NotificationManagerCompat.from(context).areNotificationsEnabled()
于 2017-01-02T16:58:35.077 に答える
39

実際、これを行うのは非常に簡単です。

/**
 * Created by desgraci on 5/7/15.
*/
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(Context context) {

        AppOpsManager mAppOps = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);

        ApplicationInfo appInfo = context.getApplicationInfo();

        String pkg = context.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;
    }
}
于 2015-05-07T17:31:32.987 に答える
5

Xamarin を使用していて、この回答が必要な場合は、次のコードを使用できます。

//return true if this option is not supported.
public class NotificationsUtils 
{
    private const String CHECK_OP_NO_THROW = "checkOpNoThrow";
    private const String OP_POST_NOTIFICATION = "OP_POST_NOTIFICATION";

    public static bool IsNotificationEnabled(global::Android.Content.Context context) {

        AppOpsManager mAppOps = (AppOpsManager) context.GetSystemService(global::Android.Content.Context.AppOpsService);

        ApplicationInfo appInfo = context.ApplicationInfo;

        String pkg = context.ApplicationContext.PackageName;

        int uid = appInfo.Uid;

        try {

            var appOpsClass = Java.Lang.Class.ForName("android.app.AppOpsManager");
            var checkOpNoThrowMethod = appOpsClass.GetMethod(CHECK_OP_NO_THROW,Java.Lang.Integer.Type,Java.Lang.Integer.Type,new Java.Lang.String().Class);//need to add String.Type

            var opPostNotificationValue = appOpsClass.GetDeclaredField (OP_POST_NOTIFICATION);
            var value = (int)opPostNotificationValue.GetInt(Java.Lang.Integer.Type);
            var mode = (int)checkOpNoThrowMethod.Invoke(mAppOps,value, uid, pkg);
            return (mode == (int)AppOpsManagerMode.Allowed);

        } catch (Exception) 
        {
            System.Diagnostics.Debug.WriteLine  ("Notification services is off or not supported");
        } 
        return true;
    }
}
于 2016-02-02T06:11:56.907 に答える