In b4i we use contentheight and contentwidth for the contents height and width of scrollview . In B4a there are no control like this. What do we use for that ?
Dim sv As ScrollView
sv.Initialize(1000dip) '1000dip is the inner height of the scrollview
'or you set it later like
sv.Panel.Height=2000dip
Dim hsv As HorizontalScrollView
hsv.Initialize(2000dip) 'same same