Context: I have a ScrollView that may have children added to its content view during a fling. Since the fling is configured with the height of the ScrollView<
I solved a similar problem with @Override fling method. If you override fling method on your ScrollViewNoFling class and not call super.fling on this method, you gonna have not-fling-handled scrollView.
@Override
public void fling (int velocity)
{
/*Scroll view is no longer going to handle scroll velocity.
* super.fling(velocity);
*/
}