Is there a way to position a menu item at the very far left of the actionbar?
Added as below:
B4X:
Dim cs As CSBuilder
cs.Initialize.Color(Colors.Red).Size(16).Append("Current Page").PopAll
#if B4A
Dim menus As List = B4XPages.GetManager.GetPageInfoFromRoot(Root).Parent.MenuItems
menus.Clear
Dim mi As B4AMenuItem = B4XPages.AddMenuItem(Me, cs)
mi.AddToBar = True
Yes, that might be the best then. Doing away with my Droppy overflow menu, have the drawer on the left doing the overflow menu and my page title text menu item on the right doubling as a menu group changer.