gpt4 book ai didi

android - 监听应用程序通知设置的变化

转载 作者:行者123 更新时间:2023-12-03 23:52:28 26 4
gpt4 key购买 nike

我的应用程序能够触发一些通知。

notifications_screen

我希望能够检测用户何时更改通知设置,例如当它全局禁用它们时,当他禁用一个 channel 时,或者当他切换“允许通知点”时......

我试过NotificationListenerService方法:

public class AppNotificationListenerService extends NotificationListenerService {

private static final String TAG = "AppNLS";

@Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "onCreate: ");
}

@Override
public IBinder onBind(Intent intent) {
Log.d(TAG, "onBind: ");
return super.onBind(intent);
}

@Override
public boolean onUnbind(Intent intent) {
Log.d(TAG, "onUnbind: ");
return super.onUnbind(intent);
}

@Override
public void onNotificationPosted(StatusBarNotification sbn) {
super.onNotificationPosted(sbn);
Log.d(TAG, "onNotificationPosted: ");
}

@Override
public void onNotificationRemoved(StatusBarNotification sbn) {
super.onNotificationRemoved(sbn);
Log.d(TAG, "onNotificationRemoved: ");
}

@Override
public void onListenerConnected() {
super.onListenerConnected();
Log.d(TAG, "onListenerConnected: ");
}

@Override
public void onListenerDisconnected() {
super.onListenerDisconnected();
Log.d(TAG, "onListenerDisconnected: ");
}

@Override
public void onNotificationChannelModified(String pkg, UserHandle user, NotificationChannel channel, int modificationType) {
super.onNotificationChannelModified(pkg, user, channel, modificationType);
Log.d(TAG, "onNotificationChannelModified: ");
}

@Override
public void onListenerHintsChanged(int hints) {
super.onListenerHintsChanged(hints);
Log.d(TAG, "onListenerHintsChanged: ");
}

@Override
public void onNotificationPosted(StatusBarNotification sbn, RankingMap rankingMap) {
super.onNotificationPosted(sbn, rankingMap);
Log.d(TAG, "onNotificationPosted: ");
}

@Override
public void onNotificationRemoved(StatusBarNotification sbn, RankingMap rankingMap) {
super.onNotificationRemoved(sbn, rankingMap);
Log.d(TAG, "onNotificationRemoved: ");
}

@Override
public void onNotificationRemoved(StatusBarNotification sbn, RankingMap rankingMap, int reason) {
super.onNotificationRemoved(sbn, rankingMap, reason);
Log.d(TAG, "onNotificationRemoved: ");
}

@Override
public void onNotificationRankingUpdate(RankingMap rankingMap) {
super.onNotificationRankingUpdate(rankingMap);
Log.d(TAG, "onNotificationRankingUpdate: ");
}

@Override
public void onNotificationChannelGroupModified(String pkg, UserHandle user, NotificationChannelGroup group, int modificationType) {
super.onNotificationChannelGroupModified(pkg, user, group, modificationType);
Log.d(TAG, "onNotificationChannelGroupModified: ");
}

@Override
public void onInterruptionFilterChanged(int interruptionFilter) {
super.onInterruptionFilterChanged(interruptionFilter);
Log.d(TAG, "onInterruptionFilterChanged: ");
}

}

在 list 中,我添加了服务:
<service android:name=".services.AppNotificationListenerService"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE" >
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>

我已授予我的应用程序的通知访问权限:
access

服务已正确创建绑定(bind),我看到 onNotificationPosted()onNotificationRemoved()当通知区域显示/删除通知时。

但是,当我全局启用/禁用应用程序的通知时,不会调用任何方法。当我启用/禁用 channel 通知时,唯一调用的方法是 onNotificationRankingUpdate()但是当其他应用程序的 channel 也被切换时会调用它。我只需要从我的应用程序中。

这是正确的方式还是我想要实现的目标是以另一种方式完成的?

最佳答案

发表于 another SO answer , API 28 为 ACTION_NOTIFICATION_CHANNEL_BLOCK_STATE_CHANGED 添加了系统广播和 ACTION_NOTIFICATION_CHANNEL_GROUP_BLOCK_STATE_CHANGED这应该适合您的需求(see documentation)。

关于android - 监听应用程序通知设置的变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55500257/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com