I am trying to implement a Google Now like card view where the user can remove a card by swiping it left or right. A scrollview holds my cards. How can I swipe it left or right? The scrollview should not scroll at that time.
There is a requestDisallowInterceptTouchEvent method that can prevent touches from registering on a view. But somehow it doesn't work on ScrollView. If it had worked, I could have at least stopped the scrollview from scrolling and then worry about the left/right swipe.
There is a requestDisallowInterceptTouchEvent method that can prevent touches from registering on a view. But somehow it doesn't work on ScrollView. If it had worked, I could have at least stopped the scrollview from scrolling and then worry about the left/right swipe.