gpt4 book ai didi

android - NotificationManagerCompat 类型未定义方法 areNotificationsEnabled()

转载 作者:行者123 更新时间:2023-11-30 00:36:18 25 4
gpt4 key购买 nike

我想知道我的应用是否可以显示通知。所以我找到了this .

所以我在使用 Eclipse 和 android:targetSdkVersion="24"的应用程序中使用了这个简单的功能

  @TargetApi(24)
static boolean AreNotificationsEnabledForMyApp(Context myContext) {
if (Build.VERSION.SDK_INT < 24)
return true; //there is no way to know this in earlier Android releases so I return true.

NotificationManagerCompat nmc = NotificationManagerCompat.from(myContext);
return nmc.areNotificationsEnabled();
}

但是我得到一个编译错误

The method areNotificationsEnabled() is undefined for the type NotificationManagerCompat

最佳答案

您的代码有误。 areNotificationsEnabled()support library ( docs ) 版本 24.0.0 起可用,不适用于 Android 平台。看起来您正在使用一些旧版本的库。在这种情况下,平台版本检查也没有用,可以安全地删除。

关于android - NotificationManagerCompat 类型未定义方法 areNotificationsEnabled(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43357419/

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