Open tom5079 opened 5 years ago
Text action menus without icon automatically go to the overflow section because of the line 178 in MenuView
List<MenuItemImpl> localActionItems = filter(mMenuItems, new MenuItemImplPredicate() { @Override public boolean apply(MenuItemImpl menuItem) { return menuItem.getIcon() != null && (menuItem.requiresActionButton() || menuItem.requestsActionButton()); } });
I don't think menuItem.getIcon() != null is nessesary because option always|withText without icon is possible
menuItem.getIcon() != null
always|withText
BTW, is this repository even mantained?
Text action menus without icon automatically go to the overflow section because of the line 178 in MenuView
I don't think
menuItem.getIcon() != null
is nessesary because optionalways|withText
without icon is possible