Android Notification Big Picture Style and Big Text Style -
i've build push notification using big picture style show here. possible mix big picture style , big text style shown in attached photo? how do it?
you should able way:
notification notif = new notification.builder(context) .setcontenttitle("title") .setcontenttext("content") .setsmallicon(r.drawable.ic_small) .setlargeicon(bitmap) .setstyle(new notification.bigpicturestyle() .bigpicture(bigbitmap) .setbigcontenttitle("big title")) .build();
Comments
Post a Comment