android 通知管理器getSystemService()调用不起作用

7gyucuyw  于 2023-06-04  发布在  Android
关注(0)|答案(1)|浏览(347)

我正在学习有关创建通知的this教程
但是,我似乎无法做到以下几点:

NotificationManager notificationManager = getSystemService(NotificationManager.class);

因为我的Android Studio报告了错误:

Required Type: Context
Provided: Class <android.app.NotificationManager>
reason: Class<NotificationManager> is not compatible with Context

请让我知道如何解决这个问题。

vngu2lb8

vngu2lb81#

我发现这是我的解决方案:

NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

相关问题