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.
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