Why doesn't this Listview list scroll?
B4X:
Dim DDlist As ListView
Dim lbl As Label
DDlist.Initialize("DDlist")
DropDownPanel.AddView(DDlist, 10dip,40dip,11dip*Wide,28dip*(DDText.Size -1))
For X =1 To DDText.Size -1
DDlist.AddSingleLine(DDText.Get(X))
Next
DDlist.SingleLineLayout.ItemHeight = 27dip
lbl = DDlist.singlelinelayout.label
lbl.TextSize =18
lbl.TextColor = Colors.Black