public static DrawerMenuItem create(
     int pMenuId,
     String pLabel,
     int pIconDrawableId,
     boolean pUpdateActionBarTitle,
     boolean pIsShowInfoButton) {
   DrawerMenuItem item = new DrawerMenuItem();
   item.setId(pMenuId);
   item.setLabel(pLabel);
   item.setIconId(pIconDrawableId);
   item.setUpdateActionBarTitle(pUpdateActionBarTitle);
   item.setShowInfoButton(pIsShowInfoButton);
   return item;
 }