Android Question WheelView not scrolling in ScrollView

sdixon

Member
Licensed User
Longtime User
Hi, I have a strange problem with the WheelView implementation. It works great when placed on a scrollview and there is no scroll. As soon as the scrollview can scroll the wheels stop working and I can't change the date

B4X:
pnlName.Height = 510dip
svEnterInfo.Panel.Height = 510dip
svEnterInfo.Height = 85%y
svEnterInfo.Visible = True

this works, but this

B4X:
pnlName.Height = 510dip
svEnterInfo.Panel.Height = 530dip
svEnterInfo.Height = 85%y
svEnterInfo.Visible = True

does not work. Has anyone else run into this?
 
Top