Android: Grouped notifications and summary still shown separately on 4.4 and below

后端 未结 2 629
北荒
北荒 2020-12-28 12:40

I want to implement stacked notifications on Android Wear To do that I create 1 summary notification and N individual notifications for each \"item\". I want only the summar

2条回答
  •  囚心锁ツ
    2020-12-28 13:21

    You Just Remove showSingleNotification method and replace

    notificationManager.notify(123456, notification); 
    

    with

    notificationManager.notify(123456, builder); 
    

    and its work fine.

提交回复
热议问题