Reputation: 62519
I saw that google's gmail has a notification that shows with a small badge and i was wondering if that is something i can add to my notifications. Here is an example:
See the RED little badge hanging off the icon. is that something i can utilize. I am targeting the following in gradle:
minSdkVersion 19
targetSdkVersion 24
Upvotes: 0
Views: 168
Reputation: 4165
You can achieve this using
NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setLargeIcon(largeIcon)
Upvotes: 1