My question is very simple, how to add a notification value right of the item on NavigationView for Material Design Drawer like that ?
Is there a property in the menu items for defining the drawer?
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group
android:checkableBehavior="single">
<item
android:id="@+id/drawer_home"
android:checked="true"
android:icon="@drawable/ic_home_black_24dp"
android:title="@string/home"/>
<item
android:id="@+id/drawer_favourite"
android:icon="@drawable/ic_favorite_black_24dp"
android:title="@string/favourite"/>
...
<item
android:id="@+id/drawer_settings"
android:icon="@drawable/ic_settings_black_24dp"
android:title="@string/settings"/>
</group>
</menu>
This is possible with
NavigationView
from Version 23 of AppCompat-V7 using action views. 1. Create a layout for the counter e.g.nav_drawer_counter.xml
:Add a reference to it from each item you'd like to show a counter value for in your
menu/nav_drawer.xml
(ensure you use theapp
namespace):Add a method to set a value to the
TextView
e.g: