Notification.bigContentView 在 API 中已弃用 24 (Nougat) 有什么替代方案?

Notification.bigContentView is deprecated in API 24 (Nougat) what is the alternative?

我刚刚将编译 sdk 版本从 API 23 升级到 API 24,看来 Notification.bigContentView 已被弃用。

所以问题是 API 24 中设置 bigContentView 的等效方法是什么 Android API 24(Nougat)?

NotificationBuilderCompat有一个新方法setCustomBigContentView() 在 v4 支持库中 24.

您可以使用此方法避免弃用警告,并且该方法向后兼容。

引用文档:

从 N 开始,此字段可能为空。扩展的通知视图由 Notification.Builder 的输入决定;可以选择使用 setCustomBigContentView(RemoteViews) 提供自定义 RemoteViews。

https://developer.android.com/reference/android/app/Notification.html#bigContentView