I am using Navigation Drawer in my Android app, on that showing different MenuItems.
I want to add menuItem dynamically. For that menuItem, I want to set Icon and Title dynamically. I want to set ImageUrl from server in Icon.
Bellow is the code I tried.
Menu menu = mNavigationView.getMenu();
MenuItem item = menu.add(groupId, menuItemId, Order, "Menu Item 1 Title");
item.setIcon(R.drawable.ic_some_menu_item_icon);
But it is not working, kindly help me on this.