在API 24(Nougat)中不推荐使用Notification.bigContentView有什么替代方案?

时间:2016-08-28 08:12:54

标签: android android-7.0-nougat

我刚刚从API 23将编译sdk版本升级到API 24,似乎不推荐使用Notification.bigContentView

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

1 个答案:

答案 0 :(得分:10)

NotificationBuilderCompat有一种新方法setCustomBigContentView() 在v4支持库中。

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

引用文档:

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

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