是否有人知道来自Google Android日历应用的通知的默认频道ID。这将允许我直接启动该频道的通知设置。 如果有人拥有根植的Android Oreo或Above设备,则可以使用以下代码将其拉出:
Context c = context.createPackageContext("com.google.android.calendar", 0);
NotificationManager notificationManager = (NotificationManager) c.getSystemService(Context.NOTIFICATION_SERVICE);
List<NotificationChannel> l = notificationManager.getNotificationChannels();
Log.d("Channels", l.toString());
我无法在非root用户的手机或仿真器上执行此操作,因为它会引发安全异常。
提前谢谢,
狮子座