Android 报Notification.Builder is deprecated

喜夏-厌秋 提交于 2019-12-27 01:14:02

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

```

notification = new Notification.Builder(this)
        .setContentTitle(mMusicModel.getName())
        .setContentText(mMusicModel.getAuthor())
        .setSmallIcon(R.mipmap.logo)
        .setContentIntent(pendingIntent)
        .build();

```

主要是因为8.0后notification加上了channel,所以应该写成这样

```

notification = new NotificationCompat.Builder(this, CHANNEL_ID)
        .setContentTitle(mMusicModel.getName())
        .setContentText(mMusicModel.getAuthor())
        .setSmallIcon(R.mipmap.logo)
        .setContentIntent(pendingIntent)
        .build();

```

参考:https://blog.csdn.net/qq_34262794/article/details/78851134

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!