I cannot get the 3-dot menu to appear on the title bar on any B4XPage. Below is my code.
I have used the ThreePagesExample, which shows the menu 3-dots as expected, and can see no difference with my code. My code compiles without error but the 3-dot menu never will appear, regardless of what I do.
I have searched the forum but cannot find any solution.
What might I be doing wrong?
B4X:
Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1
Root.LoadLayout("help_page")
B4XPages.SetTitle(Me, Main.App_Name & " - Help And Instructional Videos")
B4XPages.AddMenuItem(Me, "my menu selection")
End Sub
I have used the ThreePagesExample, which shows the menu 3-dots as expected, and can see no difference with my code. My code compiles without error but the 3-dot menu never will appear, regardless of what I do.
I have searched the forum but cannot find any solution.
What might I be doing wrong?