I have a CustomListView that scrolls horizontally. I then have an element in each panel which scrolls vertically.
If I try to scroll vertically it tends to scroll left to right and gets stuck scrolling vertically.
I noticed if I scroll super straight, I can get it to scroll vertically.
This tells me that the cause of the problem is the scroll detection for the X axis is interfering with the scroll detection for the Y Axis.
I have setup my CustomerListView so that it only scrolls horizontally once a certain scroll offset threshold is reached.
So what I want to do is disable X scroll detection unless it is above this threshold. That way only the Y scrolling will be detected and the interference will be resolved.
Any suggestions on how I can go about doing this?
If I try to scroll vertically it tends to scroll left to right and gets stuck scrolling vertically.
I noticed if I scroll super straight, I can get it to scroll vertically.
This tells me that the cause of the problem is the scroll detection for the X axis is interfering with the scroll detection for the Y Axis.
I have setup my CustomerListView so that it only scrolls horizontally once a certain scroll offset threshold is reached.
So what I want to do is disable X scroll detection unless it is above this threshold. That way only the Y scrolling will be detected and the interference will be resolved.
Any suggestions on how I can go about doing this?