Hi guys,
I have these codes
In layout "lySmmry", there are labels that Horizontal alignment set to right/center, but it didn't work, it always display with left alignment.
My xCustomListView version is 1.73 same as online version.
Are there something wrong with my codes?
I have these codes
B4X:
Sub createSmmryItem As Panel
Dim p As Panel
p.Initialize("")
p.LoadLayout("lySmmry")
p.SetLayout(0, 0, 100%x, pnlSmmry.Height)
p.Color = Colors.RGB(48,48,48)
Return p
End Sub
Sub Test
Private clv As CustomListView
clv.Clear
clv.Add(createSmmryItem,0)
End Sub
In layout "lySmmry", there are labels that Horizontal alignment set to right/center, but it didn't work, it always display with left alignment.
My xCustomListView version is 1.73 same as online version.
Are there something wrong with my codes?