1

I want to show notification with big picture(BigPictureStyle) and big text(BigTextStyle). How can I do it?

Viktor Sinelnikov
  • 1,631
  • 2
  • 16
  • 26

1 Answers1

2

Setstyle only allows either BigPictureStyle or BigTextStyle. If you need a non-standard notification style, you may have to use a custom notification layout.

See Change Notification Layout and How to make an image fit a custom 256dp Big Picture Notification in Android? on using a custom notification layout. For multi-line long text use android:inputType="textMultiLine" for the TextView. The latter answer contains an example of custom big picture.

Community
  • 1
  • 1
headuck
  • 2,763
  • 16
  • 19