Android通知大照片风格和大文本样式 [英] Android Notification Big Picture Style and Big Text Style

查看:685
本文介绍了Android通知大照片风格和大文本样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经使用大照片风格这里展示建立一个推送通知
是否有可能如在所附照片混合大画面风格和大文本样式?我该怎么做呢?

I've build a push notification using Big Picture Style as show here. Is it possible to mix Big picture Style and Big Text Style as shown in the attached photo? How do I do it?

推荐答案

您应该能够做这种方式:

You should be able to do it this 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();

<一个href=\"http://developer.android.com/reference/android/app/Notification.BigPictureStyle.html\">Source

这篇关于Android通知大照片风格和大文本样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆