iOS Question B4Xpages with ToolbarButtons

Livio F

Member
Licensed User
Longtime User
Hello everybody.
I started using b4i. I cannot display the bottom menu bar. Do you know if it's possible? I searched the forum but didn't find anything for b4xpages. I have attached the example.
 

Attachments

  • ListAndKeyboard.zip
    3.8 KB · Views: 101

Livio F

Member
Licensed User
Longtime User
I tried this and it worked. But I don't know if it's the correct way. If anyone knows, please let me know.
B4X:
Private Sub B4XPage_Created (Root1 As B4XView)
    Root = Root1
    Root.LoadLayout("MainPage")
    CustomListView1.DefaultTextBackgroundColor = xui.Color_White
    For i = 1 To 100
        CustomListView1.AddTextItem(i, "")
    Next
    Main.NavControl.ToolBarVisible = True   ' <-----this
    toolbar
End Sub
 
Upvote 0
Top