Android 4.1では、特定のアプリケーションの通知を無効にするためのチェックボックスがユーザーに提供されています。
ただし、開発者として、通知の呼び出しが有効であったかどうかを知る方法はありません。
現在のアプリケーションで通知が無効になっているかどうかを確認する必要がありますが、APIでその設定を見つけることができません。
コードでこの設定を確認する方法はありますか?
Android 4.1では、特定のアプリケーションの通知を無効にするためのチェックボックスがユーザーに提供されています。
ただし、開発者として、通知の呼び出しが有効であったかどうかを知る方法はありません。
現在のアプリケーションで通知が無効になっているかどうかを確認する必要がありますが、APIでその設定を見つけることができません。
コードでこの設定を確認する方法はありますか?
回答:
あなたは100%できないことはできません。
このGoogle I / O 2012ビデオで尋ねられ、新しい通知のプロジェクトリーダーは、それができないことを宣言します。
2016年の更新:このGoogle I / O 2016ビデオで述べたように、これを確認できます。
NotificationManagerCompat.areNotificationsEnabled()
サポートライブラリのを使用して、API 19以降で通知がブロックされているかどうかを確認します。API 19以下のバージョンはtrueを返します(通知は有効です)。
NotificationManagerCompat.from(ctx).areNotificationsEnabled()
実際、これは非常に簡単です。
/**
* 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;
}
}
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;
}
}
通知状態を照会する方法がないようです。
私はこれをお勧めします:
100%正解ではありません。しかし、これは意見を与えます。
たとえば、ユーザーが10〜15日間アプリの通知をクリックしない場合、おそらくそれを無効にします
このメソッドを使用して、通知が有効かどうかを確認します。上記の方法は、通知が有効かどうかを確認するために機能します。ただし、Android 8以降では、通知を作成するために最初にチャネルを作成する必要があるため、Oreoから、通知チャネルが有効になっているかどうかを確認する必要があります。
/**
* Checking Whether notifications are enabled or not
* @return true if notifications are enabled otherwise false
*/
public static final String CHANNEL_ID = “your_channel_id";
private boolean isNotificationChannelEnabled(){
if(NotificationManagerCompat.from(this).areNotificationsEnabled()) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
NotificationChannel channel = manager.getNotificationChannel(CHANNEL_ID);
if (channel == null)
return true; //channel is not yet created so return boolean
// by only checking whether notifications enabled or not
return channel.getImportance() != NotificationManager.IMPORTANCE_NONE;
}
return true;
}
return false;
}