小编fel*_*lix的帖子

如何在状态栏中显示多个通知的单个通知图标

我目前正在显示通知:

NotificationCompat.Builder noBuilder = new NotificationCompat.Builder(this)
    .setSound(sound)
    .setSmallIcon(R.drawable.h) 
    .setLargeIcon(largeIcon)
    .setContentTitle(title)
    .setFullScreenIntent(pendingIntent,true)
    .setContentText(message)
    .setStyle(new NotificationCompat.BigTextStyle()
    .bigText(message))
    .setAutoCancel(true)
    .setPriority(Notification.PRIORITY_HIGH)
    .setContentIntent(pendingIntent);
Run Code Online (Sandbox Code Playgroud)

android android-notifications

1
推荐指数
1
解决办法
2079
查看次数

标签 统计

android ×1

android-notifications ×1