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
Text action menus without icon automatically go to the overflow section because of the line 178 in MenuView
I don't think
menuItem.getIcon() != nullis nessesary because optionalways|withTextwithout icon is possible