gmail在android中使用什么通知类型

时间:2014-05-21 11:01:07

标签: java android android-layout push-notification

Gmail在Nexus4(Android 4.3)中使用哪种类型的通知?

它有两个我想使用的特殊功能。

a)当有多封邮件要阅读时,所有标题会一个接一个地出现。 并绘制了一条底线。

enter image description here

b)当通知页面中没有空格时,Gmail通知会缩小并汇总所有标题。

enter image description here

他们是如何做到的?我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

基本上是Big ViewNotification.BigTextStyle

您可以自定义布局或在默认通知下使用它:

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
                this).setSmallIcon(R.drawable.ic_launcher)
                .setContentTitle("Title")
                .setStyle(new NotificationCompat.BigTextStyle().bigText("Message"))
                .setContentText("Message");   

如需根据要求自定义通知的布局,请参阅:
Expandable Notifications
Applying Big Style