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?

enter image description here

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(); 

source


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -