How to add item number on the cart icon at top toolbar? Android
I saw some apps made it. So I am intersting at how to do it. I believe there must be some trick way to do it. Example: I add the cart icon in the menu file. ` <item android:id="@+id/action_drawer_search" android:orderInCategory="300" android:title="Search" android:icon="@drawable/ic_search_white_24dp" app:showAsAction="ifRoom" /> <item android:id="@+id/action_drawer_cart" android:orderInCategory="200" android:title="Cart" android:icon="@drawable/ic_shopping_cart_white_24dp" app:showAsAction="ifRoom"/> ` Example code that worked for me. 1: Create a layout for your badge menu item.