如何将 Notification.BigPictureStyle 与长摘要文本一起使用?

How to use Notification.BigPictureStyle with long summary text?

我想显示带有大图片(BigPictureStyle) 和大文本(BigTextStyle) 的通知。我该怎么做?

Setstyle 只允许 BigPictureStyle 或 BigTextStyle。如果您需要非标准通知样式,您可能必须使用自定义通知布局。

请参阅 Change Notification Layout and How to make an image fit a custom 256dp Big Picture Notification in Android? 了解如何使用自定义通知布局。对于多行长文本,对 TextView 使用 android:inputType="textMultiLine"。后一个答案包含自定义大图的例子。