I am trying to disable the way that customlistview shows where list entries come floating in from the topleft corner.
I have already set the Animation duration in the layout to 0, both on the component itself and on activity level, but with no result. I did the same for the panels being added with p.SetLayoutAnimated(0,0,0,0,0), but still it does the same.
Sub CreateListItem_contactlist(ct As Contactentries, itemWidth As Int, itemheight As Int) As Panel
Dim p As Panel
Log ("ct " & ct & " itemwidth " & itemWidth & " itemheight " & itemheight)
p.Initialize("")
Activity.AddView(p, 0, 0, itemWidth, itemheight)
p.LoadLayout("contacts_cellItem")
p.SetLayoutAnimated(0,0,0,0,0)
p.RemoveView
Return p
End Sub