Show notifications counter in BottomNavigation

0

I currently have it as the second image, but I found it a bit more attractive with the navigation bottom , but I want to know how I can make the red balloon appear with the number of notifications (counter) . The red balloon is a "Drawable"

    
asked by DoubleM 16.11.2017 в 03:34
source

1 answer

2

I recommend you use this library:

link

It consists of a BottomNavigation more advanced than the original, it adapts much easier to your needs, for example, this is how you can put a "badge" of notification:

 bottomNavigation.setNotification(notification, bottomNavigation.getItemsCount() - 4);

and this would be the result:

    
answered by 16.11.2017 в 04:02