NotificationCompat v7和Android O.

Mik*_*e T 4 android android-8.0-oreo

我在使用NotificationCompat v7和Android O时遇到了麻烦.由于NotificationCompatV7的实现只实现了v4版本的不推荐使用的构造函数(在支持库26.0.0-beta1中已弃用),我无法使Notifications工作.

这里提出了NotificationCompat v4的解决方案: NotificationCompat with API 26

但由于v7版本的实施不当(https://issuetracker.google.com/issues/62475846)存在此问题,我无法在Android O上发布通知

有没有人有解决方案,或者我在这里遗漏了什么?

Mar*_*arr 9

NotificationCompat v7现已弃用,您应该使用NotificationCompat v4(根据NotificationCompat v7类的注释).

/**
 * @deprecated Use the static classes in {@link android.support.v4.app.NotificationCompat}.
 */
Run Code Online (Sandbox Code Playgroud)

然后你可以建立你的通知(Kotlin):

val notificationBuilder = NotificationCompat.Builder(context, "your_notification_channel_name")                     
.setContentTitle("title")
[...]
Run Code Online (Sandbox Code Playgroud)

注意:最新的支持版本是"com.android.support:appcompat-v7:26.0.0"