Hello everybody.
I try to load a customlistview inside a tab.
Until now I have on my Activity_Create
PhotoAlbum.bal is my Panel and on my procedure I have my item.
But all I get is a white panel.
Why that happening?
I try to load a customlistview inside a tab.
Until now I have on my Activity_Create
B4X:
ItemTab.AddTab("Photos", "PhotoAlbum.bal")
B4X:
Sub LoadImagesAndInfos
Dim P1 As B4XView = xui.CreatePanel("")
P1.SetLayoutAnimated(100, 0, 0, 260dip, 380dip)
P1.LoadLayout("PhotoAlbumRow")
Label1.Text = ItemMap.Get("Description")
CustListVw1.Add(P1, "")
End Sub
Why that happening?