Can any one tell me what is wrong with this code snippet. When i run it i only get a blank screen. But the menu items are available
B4X:
Sub Activity_Create(FirstTime As Boolean)
Dim kbPanel As Panel
Dim svOrders As ScrollView
svOrders.Initialize(180)
kbPanel.Initialize("")
Activity.AddView(kbPanel,100%x, 0,100%x,100%y)
kbPanel.LoadLayout("scr3")
Activity.AddView(svOrders,0,330,400,180)
Activity.AddMenuItem("Customers", "mnuCustomers")
Activity.AddMenuItem("Catalogues", "mnuCatalogues")
Activity.AddMenuItem("TempPics", "mnuPicsTemp")
End Sub