Android Question CustomListView - 2 Directional Scrolling

DawningTruth

Active Member
Licensed User
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?
 

DawningTruth

Active Member
Licensed User
Thx Erel,

I have been thinking the same thing. I see that the scrollview reacts to the movement of the scroll, which has already taken place by the time it is handled. Which creates the moving screen problem. Let me investigate your suggested option.
 
Upvote 0
Top