I want to show notification with big picture(BigPictureStyle) and big text(BigTextStyle). How can I do it?
Asked
Active
Viewed 3,494 times
1
-
1Please refer to http://stackoverflow.com/questions/25361533/android-notification-big-picture-style-and-big-text-style – headuck Sep 13 '15 at 21:06
-
Please elaborate on how it fails to work. – headuck Sep 14 '15 at 09:05
-
It shows big title in single line. I need multi line (BigTextStyle) – Viktor Sinelnikov Sep 14 '15 at 09:15
-
Please check this solution, it will HELP u https://stackoverflow.com/a/44757879/3946958 – Ravindra Kushwaha Jun 26 '17 at 10:41
1 Answers
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.