web-dev-qa-db-ja.com

Android Oreo Notifications-特定のチャンネルが有効かどうかを確認

このスニペットを使用して、通知が有効になっているかどうかを確認しています:

NotificationManagerCompat.from(getContext()).areNotificationsEnabled()

しかし、、ユーザーがチャンネルのみを無効にすると、それを知ることができません。

何か案が? enter image description here

19
itzhar

後方互換性あり:

public boolean isNotificationChannelEnabled(Context context, @Nullable String channelId){
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            if(!TextUtils.isEmpty(channelId)) {
                NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
                NotificationChannel channel = manager.getNotificationChannel(channelId);
                return channel.getImportance() != NotificationManager.IMPORTANCE_NONE;
            }
            return false;
        } else {
            return NotificationManagerCompat.from(context).areNotificationsEnabled();
        }
    }
34
itzhar

ドキュメントを確認してください こちら

ユーザーは、振動や警告音などの動作を含む通知チャネルの設定を変更できます。次の2つのメソッドを呼び出して、ユーザーが通知チャネルに適用した設定を検出できます。

単一の通知チャネルを取得するには、getNotificationChannel()を呼び出します。アプリに属する​​すべての通知チャネルを取得するには、getNotificationChannels()を呼び出します。 NotificationChannelを取得したら、getVibrationPattern()getSound()などのメソッドを使用して、ユーザーが現在持っている設定を確認できます。 ユーザーが通知チャネルをブロックしたかどうかを確認するには、getImportance()を呼び出します。通知チャネルがブロックされている場合、getImportance()IMPORTANCE_NONE

16
ditn

これを使用して、通知全体またはチャネルが無効になっているかどうかを確認し、対応する設定にユーザーを誘導します。

呼び出しメソッドで:

if (!notificationManager.areNotificationsEnabled()) {
        openNotificationSettings();
        return;
    }

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O &&
            isChannelBlocked(CHANNEL_1_ID)) {
        openChannelSettings(CHANNEL_1_ID);
        return;
    }

あなたのクラスで:

private void openNotificationSettings() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        Intent intent = new Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS);
        intent.putExtra(Settings.EXTRA_APP_PACKAGE, getPackageName());
        startActivity(intent);
    } else {
        Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
        intent.setData(Uri.parse("package:" + getPackageName()));
        startActivity(intent);
    }
}

@RequiresApi(26)
private boolean isChannelBlocked(String channelId) {
    NotificationManager manager = getSystemService(NotificationManager.class);
    NotificationChannel channel = manager.getNotificationChannel(channelId);

    return channel != null &&
            channel.getImportance() == NotificationManager.IMPORTANCE_NONE;
}

@RequiresApi(26)
private void openChannelSettings(String channelId) {
    Intent intent = new Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS);
    intent.putExtra(Settings.EXTRA_APP_PACKAGE, getPackageName());
    intent.putExtra(Settings.EXTRA_CHANNEL_ID, channelId);
    startActivity(intent);
}
5
Florian Walther

@itzharの例には1つの欠陥があると思います。ユーザーがアプリで通知を完全に無効にすると、(チャネル自体が無効にならなかった場合)誤検知が発生する可能性があります。

更新されたコード(Kotlin)は次のようになります。

fun isNotificationAllowed(context: Context): Boolean {
    return if (isOOrLater()) {
        areNotificationsEnabled(context) and isChannelDisabled(context)
    } else {
        areNotificationsEnabled(context)
    }
}

private fun areNotificationsEnabled(context: Context) =
    NotificationManagerCompat.from(context).areNotificationsEnabled()

@RequiresApi(api = Build.VERSION_CODES.O)
private fun isChannelDisabled(context: Context): Boolean{
    val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
    val channel = notificationManager.getNotificationChannel(NOTIFICATION_CHANNEL_ID)
    return channel.importance != NotificationManager.IMPORTANCE_NONE
}

private fun isOOrLater() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O
2
thorin86

この方法は役立ちます:

public boolean isNotificationChannelDisabled(@NonNull String channelId) {
        if(!channelId.equals(EMPTY)) {
            NotificationChannel channel = getManager().getNotificationChannel(channelId);
            return channel.getImportance() == NotificationManager.IMPORTANCE_NONE;
        }

        return false;
    }

private NotificationManager getManager(@NonNull Context context) {
        return mManager(Android.app.NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
    }
2
shailesh mota
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            if(NotificationManagerCompat.from(context).areNotificationsEnabled()) {
                for (String channelId : channelIds) {
                    if (!TextUtils.isEmpty(channelId)) {
                        NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
                        if (manager != null) {
                            NotificationChannel channel = manager.getNotificationChannel(channelId);
                            if (channel.getImportance() == NotificationManager.IMPORTANCE_NONE)
                                return false;
                        }
                    }
                }
                return true;
            }else return false;
        }else{
            return NotificationManagerCompat.from(context).areNotificationsEnabled();
        }
0
Max Droid