NotificationCompat v7 and Android O

4
1个回答

9

通知兼容性 v7 已经被弃用,应该使用 通知兼容性 v4(根据通知兼容性 v7 类的注释)。

/**
 * @deprecated Use the static classes in {@link android.support.v4.app.NotificationCompat}.
 */

然后你可以构建通知(Kotlin):
val notificationBuilder = NotificationCompat.Builder(context, "your_notification_channel_name")                     
.setContentTitle("title")
[...]

注意:最新支持版本为“com.android.support:appcompat-v7:26.0.0”。

感谢您的回复。26.0.0版本真正解决了我在支持库beta版中使用NotificationCompat.Builder时遇到的问题。 - Mike T

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接