How can we show notification count in Android on Home screen app launcher icon with count and how to increment and decrement this count? And if we want to increase count with silent push means without showing notification in app bar then can we achieve this functionality too?
Asked
Active
Viewed 6,310 times
1 Answers
0
You can follow this tutorial of how to implement the notification count badges on app launcher icon: How to display count of notifications in Android app launcher icon?
And to answer this part of the question:
And if we want to increase count with silent push means without showing notification in app bar then can we achieve this functionality too?
Unfortunately, you cannot achieve that because it is against Google policy for background services restrictions: https://stackoverflow.com/a/10964250/5973063

Bondolin
- 2,793
- 7
- 34
- 62

Iheb Sahloul
- 9
- 5
-
1I've implemented this solution but this is showing only badge without any count, I want to show counts and neither increasing nor decreasing and also not able to remove this badge – Ammy Kang Aug 26 '21 at 06:29