Open CHPraxis opened 7 years ago
in PagerContainer.java
in public boolean onTouchEvent(MotionEvent ev)
Somehow, you need to comment this line in case 0:
//ev.offsetLocation((float)(this.mCenter.x - this.mInitialTouch.x), (float)(this.mCenter.y - this.mInitialTouch.y));
Thank you @islamassi ! You saved my day.
I am experiencing a strange bug with scrolling.
I am using:
compile 'com.github.crosswall:Android-Coverflow:release-v1.0.4'
When I have more than two items in the coverflow, and a middle item is selected- for example, if there are three items, and the 2nd one is in the center- when I attempt to scroll, the center item jumps to where my finger touches down.
This makes scrolling very jarring. The items on the edge scroll correctly, but the item in the center leaps to my finger's location. It also prevents me from tapping on the items on the side.
My OnCreate:
My adapter:
My XML:
Any ideas?