Is there a way to position a menu item at the very far left of the actionbar?
Added as below:
RBS
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
RBS