Anyone knows how to put the tablecell and tableview transparent?
Only for appears the customitens in tablecell.
in the CreateItem I try put in panel p.color= colors.transparent and p.alpha but the customitens inside the panel going transparent too.
Only for appears the customitens in tablecell.
in the CreateItem I try put in panel p.color= colors.transparent and p.alpha but the customitens inside the panel going transparent too.
B4X:
Private Sub CreateItem As Panel
Dim p As Panel
p.Initialize("")
p.Width = 100%x
p.Height = tv.RowHeight - 20dip
p.LoadLayout("1")
p.Color = Colors.ARGB(0,50,50,50)
'p.Alpha = 0.3
Return p
End Sub
[code]
Last edited: