web-dev-qa-db-ja.com

Android 4.1:アプリケーションで通知が無効になっていることを確認する方法は?

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

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

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

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

86

100%できないことはできません。

このGoogle I/O 2012のビデオ で求められ、新しい通知のプロジェクトリーダーは、できないことを宣言します。


編集

2016 update:このGoogle I/O 2016ビデオ で述べたように、これで確認できます。

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

enter image description here

133
Blundell

実際、これは非常に簡単です。

/**
 * 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;
    }
}
39
desgraci

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

NotificationManagerCompat.from(context).areNotificationsEnabled(‌​)
30
Prakash

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;
    }
}
4
user3030630

通知状態を照会する方法がないようです。

私はこれをお勧めします:

  • 通知を使用してアプリケーションを設計します。
  • ユーザーがアプリケーションの設定から通知を無効にできるようにします。
  • 通知がクリックされたかどうかを確認します。ユーザーが通知をクリックした場合、これを設定に保存します。
  • アプリで、通知設定がオンで、ユーザーがAndroid 4.1+(API 16)であるが、ユーザーが数日/数週間通知をクリックしない場合、ユーザーは通知を無効にしたと仮定します。

100%正確ではありません。しかし、これは意見を与えます。
たとえば、ユーザーが10〜15日間アプリの通知をクリックしなかった場合、おそらく彼はそれを無効にしました

4
trante